diff --git a/grammar.js b/grammar.js index db16bf8..aaeddf2 100644 --- a/grammar.js +++ b/grammar.js @@ -79,6 +79,20 @@ module.exports = grammar({ $._abstract_declarator, ], + reserved: { + global: $ => [ + 'alignas', 'alignof', 'auto', 'break', 'case', 'const', + 'constexpr', 'continue', 'default', 'do', 'else', 'enum', + 'extern', $.false, 'for', 'goto', 'if', 'inline', 'long', + 'nullptr', $.primitive_type, 'register', 'restrict', 'return', + 'short', 'signed', 'sizeof', 'static', 'struct', 'switch', + 'thread_local', $.true, 'typedef', 'union', 'unsigned', + 'volatile', 'while', '_Alignas', '_Alignof', '_Atomic', + '_Generic', '_Noreturn', + ], + attributes: _ => [], + }, + word: $ => $.identifier, rules: { @@ -132,12 +146,12 @@ module.exports = grammar({ token.immediate(/\r?\n/), ), - preproc_def: $ => seq( + preproc_def: $ => reserved('attributes', seq( preprocessor('define'), field('name', $.identifier), field('value', optional($.preproc_arg)), token.immediate(/\r?\n/), - ), + )), preproc_function_def: $ => seq( preprocessor('define'), @@ -304,13 +318,23 @@ module.exports = grammar({ attribute_specifier: $ => seq( choice('__attribute__', '__attribute'), '(', - $.argument_list, + alias($._attribute_argument_list, $.argument_list), + ')', + ), + + _attribute_argument_list: $ => seq( + '(', + commaSep(choice( + $.expression, + $.compound_statement, + alias('const', $.identifier), + )), ')', ), attribute: $ => seq( optional(seq(field('prefix', $.identifier), '::')), - field('name', $.identifier), + field('name', reserved('attributes', $.identifier)), optional($.argument_list), ), diff --git a/package-lock.json b/package-lock.json index abcaa09..3657180 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,10 +11,10 @@ "license": "MIT", "dependencies": { "node-addon-api": "^8.2.2", - "node-gyp-build": "^4.8.2" + "node-gyp-build": "^4.8.4" }, "devDependencies": { - "eslint": "^9.14.0", + "eslint": "^9.15.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", "tree-sitter-cli": "^0.24.4" @@ -82,9 +82,9 @@ } }, "node_modules/@eslint/config-array": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.18.0.tgz", - "integrity": "sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.0.tgz", + "integrity": "sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==", "dev": true, "dependencies": { "@eslint/object-schema": "^2.1.4", @@ -96,18 +96,18 @@ } }, "node_modules/@eslint/core": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.7.0.tgz", - "integrity": "sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.0.tgz", + "integrity": "sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/eslintrc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", - "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", + "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", "dev": true, "dependencies": { "ajv": "^6.12.4", @@ -128,9 +128,9 @@ } }, "node_modules/@eslint/js": { - "version": "9.14.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.14.0.tgz", - "integrity": "sha512-pFoEtFWCPyDOl+C6Ift+wC7Ro89otjigCf5vcuWqWgqNSQbRrpjSvdeE6ofLz4dHmyxD5f7gIdGT4+p36L6Twg==", + "version": "9.15.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.15.0.tgz", + "integrity": "sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -146,9 +146,9 @@ } }, "node_modules/@eslint/plugin-kit": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.2.tgz", - "integrity": "sha512-CXtq5nR4Su+2I47WPOlWud98Y5Lv8Kyxp2ukhgFx/eW6Blm18VXJO5WuQylPugRo8nbluoi6GvvxBLqHcvqUUw==", + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz", + "integrity": "sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==", "dev": true, "dependencies": { "levn": "^0.4.1" @@ -445,9 +445,9 @@ "dev": true }, "node_modules/cross-spawn": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz", - "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "dependencies": { "path-key": "^3.1.0", @@ -509,26 +509,26 @@ } }, "node_modules/eslint": { - "version": "9.14.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.14.0.tgz", - "integrity": "sha512-c2FHsVBr87lnUtjP4Yhvk4yEhKrQavGafRA/Se1ouse8PfbfC/Qh9Mxa00yWsZRlqeUB9raXip0aiiUZkgnr9g==", + "version": "9.15.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.15.0.tgz", + "integrity": "sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.18.0", - "@eslint/core": "^0.7.0", - "@eslint/eslintrc": "^3.1.0", - "@eslint/js": "9.14.0", - "@eslint/plugin-kit": "^0.2.0", + "@eslint/config-array": "^0.19.0", + "@eslint/core": "^0.9.0", + "@eslint/eslintrc": "^3.2.0", + "@eslint/js": "9.15.0", + "@eslint/plugin-kit": "^0.2.3", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.0", + "@humanwhocodes/retry": "^0.4.1", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", + "cross-spawn": "^7.0.5", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.2.0", @@ -547,8 +547,7 @@ "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "text-table": "^0.2.0" + "optionator": "^0.9.3" }, "bin": { "eslint": "bin/eslint.js" @@ -581,9 +580,9 @@ } }, "node_modules/eslint-plugin-jsdoc": { - "version": "50.4.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.4.3.tgz", - "integrity": "sha512-uWtwFxGRv6B8sU63HZM5dAGDhgsatb+LONwmILZJhdRALLOkCX2HFZhdL/Kw2ls8SQMAVEfK+LmnEfxInRN8HA==", + "version": "50.5.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.5.0.tgz", + "integrity": "sha512-xTkshfZrUbiSHXBwZ/9d5ulZ2OcHXxSvm/NPo494H/hadLRJwOq5PMV0EUpMqsb9V+kQo+9BAgi6Z7aJtdBp2A==", "dev": true, "dependencies": { "@es-joy/jsdoccomment": "~0.49.0", @@ -752,9 +751,9 @@ } }, "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", + "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", "dev": true }, "node_modules/fs-constants": { @@ -1005,9 +1004,9 @@ "dev": true }, "node_modules/node-abi": { - "version": "3.57.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.57.0.tgz", - "integrity": "sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==", + "version": "3.71.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.71.0.tgz", + "integrity": "sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==", "dev": true, "dependencies": { "semver": "^7.3.5" @@ -1025,9 +1024,9 @@ } }, "node_modules/node-gyp-build": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", - "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==", + "version": "4.8.4", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", + "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", @@ -1172,9 +1171,9 @@ } }, "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", "dev": true, "dependencies": { "end-of-stream": "^1.1.0", @@ -1238,7 +1237,6 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -1372,24 +1370,6 @@ "node": ">=6" } }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/tree-sitter": { - "version": "0.21.1", - "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", - "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", - "hasInstallScript": true, - "optional": true, - "peer": true, - "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.0" - } - }, "node_modules/tree-sitter-cli": { "version": "0.24.4", "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.24.4.tgz", diff --git a/package.json b/package.json index 48c9248..979f933 100644 --- a/package.json +++ b/package.json @@ -34,10 +34,10 @@ ], "dependencies": { "node-addon-api": "^8.2.2", - "node-gyp-build": "^4.8.2" + "node-gyp-build": "^4.8.4" }, "devDependencies": { - "eslint": "^9.14.0", + "eslint": "^9.15.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", "tree-sitter-cli": "^0.24.4" diff --git a/src/grammar.json b/src/grammar.json index fdea897..7252f47 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -194,49 +194,53 @@ ] }, "preproc_def": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*define" + "type": "RESERVED", + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*define" + }, + "named": false, + "value": "#define" }, - "named": false, - "value": "#define" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "preproc_arg" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "\\r?\\n" + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_arg" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } } - } - ] + ] + }, + "context_name": "attributes" }, "preproc_function_def": { "type": "SEQ", @@ -3211,8 +3215,95 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "argument_list" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_attribute_argument_list" + }, + "named": true, + "value": "argument_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_attribute_argument_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "const" + }, + "named": true, + "value": "identifier" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "const" + }, + "named": true, + "value": "identifier" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3252,8 +3343,12 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "RESERVED", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "context_name": "attributes" } }, { @@ -9731,5 +9826,178 @@ "_field_declarator", "_type_declarator", "_abstract_declarator" - ] + ], + "reserved": { + "global": [ + { + "type": "STRING", + "value": "alignas" + }, + { + "type": "STRING", + "value": "alignof" + }, + { + "type": "STRING", + "value": "auto" + }, + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": "case" + }, + { + "type": "STRING", + "value": "const" + }, + { + "type": "STRING", + "value": "constexpr" + }, + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": "do" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "enum" + }, + { + "type": "STRING", + "value": "extern" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "goto" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "inline" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "nullptr" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + }, + { + "type": "STRING", + "value": "register" + }, + { + "type": "STRING", + "value": "restrict" + }, + { + "type": "STRING", + "value": "return" + }, + { + "type": "STRING", + "value": "short" + }, + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "sizeof" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "struct" + }, + { + "type": "STRING", + "value": "switch" + }, + { + "type": "STRING", + "value": "thread_local" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "STRING", + "value": "typedef" + }, + { + "type": "STRING", + "value": "union" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "volatile" + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "STRING", + "value": "_Alignas" + }, + { + "type": "STRING", + "value": "_Alignof" + }, + { + "type": "STRING", + "value": "_Atomic" + }, + { + "type": "STRING", + "value": "_Generic" + }, + { + "type": "STRING", + "value": "_Noreturn" + } + ], + "attributes": [] + } } diff --git a/src/parser.c b/src/parser.c index 4c5e0a9..6b6edea 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,3 +1,5 @@ +/* Automatically generated by tree-sitter v0.25.0 (014b5e436188dc17cc1ddeee290be674463f7c22) */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) @@ -12,385 +14,389 @@ #pragma GCC optimize ("O0") #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 2023 -#define LARGE_STATE_COUNT 463 -#define SYMBOL_COUNT 360 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 2279 +#define LARGE_STATE_COUNT 643 +#define SYMBOL_COUNT 363 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 161 +#define TOKEN_COUNT 162 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 133 +#define MAX_RESERVED_WORD_SET_SIZE 42 +#define PRODUCTION_ID_COUNT 135 enum ts_symbol_identifiers { - sym_identifier = 1, - aux_sym_preproc_include_token1 = 2, - aux_sym_preproc_include_token2 = 3, - aux_sym_preproc_def_token1 = 4, - anon_sym_LPAREN = 5, - anon_sym_DOT_DOT_DOT = 6, - anon_sym_COMMA = 7, - anon_sym_RPAREN = 8, - aux_sym_preproc_if_token1 = 9, - anon_sym_LF = 10, - aux_sym_preproc_if_token2 = 11, - aux_sym_preproc_ifdef_token1 = 12, - aux_sym_preproc_ifdef_token2 = 13, - aux_sym_preproc_else_token1 = 14, - aux_sym_preproc_elif_token1 = 15, - aux_sym_preproc_elifdef_token1 = 16, - aux_sym_preproc_elifdef_token2 = 17, - sym_preproc_arg = 18, - sym_preproc_directive = 19, - anon_sym_LPAREN2 = 20, - anon_sym_defined = 21, - anon_sym_BANG = 22, - anon_sym_TILDE = 23, - anon_sym_DASH = 24, - anon_sym_PLUS = 25, - anon_sym_STAR = 26, - anon_sym_SLASH = 27, - anon_sym_PERCENT = 28, - anon_sym_PIPE_PIPE = 29, - anon_sym_AMP_AMP = 30, - anon_sym_PIPE = 31, - anon_sym_CARET = 32, - anon_sym_AMP = 33, - anon_sym_EQ_EQ = 34, - anon_sym_BANG_EQ = 35, - anon_sym_GT = 36, - anon_sym_GT_EQ = 37, - anon_sym_LT_EQ = 38, - anon_sym_LT = 39, - anon_sym_LT_LT = 40, - anon_sym_GT_GT = 41, - anon_sym_SEMI = 42, - anon_sym___extension__ = 43, - anon_sym_typedef = 44, - anon_sym_extern = 45, - anon_sym___attribute__ = 46, - anon_sym___attribute = 47, - anon_sym_COLON_COLON = 48, - anon_sym_LBRACK_LBRACK = 49, - anon_sym_RBRACK_RBRACK = 50, - anon_sym___declspec = 51, - anon_sym___based = 52, - anon_sym___cdecl = 53, - anon_sym___clrcall = 54, - anon_sym___stdcall = 55, - anon_sym___fastcall = 56, - anon_sym___thiscall = 57, - anon_sym___vectorcall = 58, - sym_ms_restrict_modifier = 59, - sym_ms_unsigned_ptr_modifier = 60, - sym_ms_signed_ptr_modifier = 61, - anon_sym__unaligned = 62, - anon_sym___unaligned = 63, - anon_sym_LBRACE = 64, - anon_sym_RBRACE = 65, - anon_sym_signed = 66, - anon_sym_unsigned = 67, - anon_sym_long = 68, - anon_sym_short = 69, - anon_sym_LBRACK = 70, - anon_sym_static = 71, - anon_sym_RBRACK = 72, - anon_sym_EQ = 73, - anon_sym_auto = 74, - anon_sym_register = 75, - anon_sym_inline = 76, - anon_sym___inline = 77, - anon_sym___inline__ = 78, - anon_sym___forceinline = 79, - anon_sym_thread_local = 80, - anon_sym___thread = 81, - anon_sym_const = 82, - anon_sym_constexpr = 83, - anon_sym_volatile = 84, - anon_sym_restrict = 85, - anon_sym___restrict__ = 86, - anon_sym__Atomic = 87, - anon_sym__Noreturn = 88, - anon_sym_noreturn = 89, - anon_sym__Nonnull = 90, - anon_sym_alignas = 91, - anon_sym__Alignas = 92, - sym_primitive_type = 93, - anon_sym_enum = 94, - anon_sym_COLON = 95, - anon_sym_struct = 96, - anon_sym_union = 97, - anon_sym_if = 98, - anon_sym_else = 99, - anon_sym_switch = 100, - anon_sym_case = 101, - anon_sym_default = 102, - anon_sym_while = 103, - anon_sym_do = 104, - anon_sym_for = 105, - anon_sym_return = 106, - anon_sym_break = 107, - anon_sym_continue = 108, - anon_sym_goto = 109, - anon_sym___try = 110, - anon_sym___except = 111, - anon_sym___finally = 112, - anon_sym___leave = 113, - anon_sym_QMARK = 114, - anon_sym_STAR_EQ = 115, - anon_sym_SLASH_EQ = 116, - anon_sym_PERCENT_EQ = 117, - anon_sym_PLUS_EQ = 118, - anon_sym_DASH_EQ = 119, - anon_sym_LT_LT_EQ = 120, - anon_sym_GT_GT_EQ = 121, - anon_sym_AMP_EQ = 122, - anon_sym_CARET_EQ = 123, - anon_sym_PIPE_EQ = 124, - anon_sym_DASH_DASH = 125, - anon_sym_PLUS_PLUS = 126, - anon_sym_sizeof = 127, - anon_sym___alignof__ = 128, - anon_sym___alignof = 129, - anon_sym__alignof = 130, - anon_sym_alignof = 131, - anon_sym__Alignof = 132, - anon_sym_offsetof = 133, - anon_sym__Generic = 134, - anon_sym_asm = 135, - anon_sym___asm__ = 136, - anon_sym___asm = 137, - anon_sym___volatile__ = 138, - anon_sym_DOT = 139, - anon_sym_DASH_GT = 140, - sym_number_literal = 141, - anon_sym_L_SQUOTE = 142, - anon_sym_u_SQUOTE = 143, - anon_sym_U_SQUOTE = 144, - anon_sym_u8_SQUOTE = 145, - anon_sym_SQUOTE = 146, - aux_sym_char_literal_token1 = 147, - anon_sym_L_DQUOTE = 148, - anon_sym_u_DQUOTE = 149, - anon_sym_U_DQUOTE = 150, - anon_sym_u8_DQUOTE = 151, - anon_sym_DQUOTE = 152, - aux_sym_string_literal_token1 = 153, - sym_escape_sequence = 154, - sym_system_lib_string = 155, - sym_true = 156, - sym_false = 157, - anon_sym_NULL = 158, - anon_sym_nullptr = 159, - sym_comment = 160, - sym_translation_unit = 161, - sym__top_level_item = 162, - sym__block_item = 163, - sym_preproc_include = 164, - sym_preproc_def = 165, - sym_preproc_function_def = 166, - sym_preproc_params = 167, - sym_preproc_call = 168, - sym_preproc_if = 169, - sym_preproc_ifdef = 170, - sym_preproc_else = 171, - sym_preproc_elif = 172, - sym_preproc_elifdef = 173, - sym_preproc_if_in_field_declaration_list = 174, - sym_preproc_ifdef_in_field_declaration_list = 175, - sym_preproc_else_in_field_declaration_list = 176, - sym_preproc_elif_in_field_declaration_list = 177, - sym_preproc_elifdef_in_field_declaration_list = 178, - sym_preproc_if_in_enumerator_list = 179, - sym_preproc_ifdef_in_enumerator_list = 180, - sym_preproc_else_in_enumerator_list = 181, - sym_preproc_elif_in_enumerator_list = 182, - sym_preproc_elifdef_in_enumerator_list = 183, - sym_preproc_if_in_enumerator_list_no_comma = 184, - sym_preproc_ifdef_in_enumerator_list_no_comma = 185, - sym_preproc_else_in_enumerator_list_no_comma = 186, - sym_preproc_elif_in_enumerator_list_no_comma = 187, - sym_preproc_elifdef_in_enumerator_list_no_comma = 188, - sym__preproc_expression = 189, - sym_preproc_parenthesized_expression = 190, - sym_preproc_defined = 191, - sym_preproc_unary_expression = 192, - sym_preproc_call_expression = 193, - sym_preproc_argument_list = 194, - sym_preproc_binary_expression = 195, - sym_function_definition = 196, - sym__old_style_function_definition = 197, - sym_declaration = 198, - sym_type_definition = 199, - sym__type_definition_type = 200, - sym__type_definition_declarators = 201, - sym__declaration_modifiers = 202, - sym__declaration_specifiers = 203, - sym_linkage_specification = 204, - sym_attribute_specifier = 205, - sym_attribute = 206, - sym_attribute_declaration = 207, - sym_ms_declspec_modifier = 208, - sym_ms_based_modifier = 209, - sym_ms_call_modifier = 210, - sym_ms_unaligned_ptr_modifier = 211, - sym_ms_pointer_modifier = 212, - sym_declaration_list = 213, - sym__declarator = 214, - sym__declaration_declarator = 215, - sym__field_declarator = 216, - sym__type_declarator = 217, - sym__abstract_declarator = 218, - sym_parenthesized_declarator = 219, - sym_parenthesized_field_declarator = 220, - sym_parenthesized_type_declarator = 221, - sym_abstract_parenthesized_declarator = 222, - sym_attributed_declarator = 223, - sym_attributed_field_declarator = 224, - sym_attributed_type_declarator = 225, - sym_pointer_declarator = 226, - sym_pointer_field_declarator = 227, - sym_pointer_type_declarator = 228, - sym_abstract_pointer_declarator = 229, - sym_function_declarator = 230, - sym__function_declaration_declarator = 231, - sym_function_field_declarator = 232, - sym_function_type_declarator = 233, - sym_abstract_function_declarator = 234, - sym__old_style_function_declarator = 235, - sym_array_declarator = 236, - sym_array_field_declarator = 237, - sym_array_type_declarator = 238, - sym_abstract_array_declarator = 239, - sym_init_declarator = 240, - sym_compound_statement = 241, - sym_storage_class_specifier = 242, - sym_type_qualifier = 243, - sym_alignas_qualifier = 244, - sym_type_specifier = 245, - sym_sized_type_specifier = 246, - sym_enum_specifier = 247, - sym_enumerator_list = 248, - sym_struct_specifier = 249, - sym_union_specifier = 250, - sym_field_declaration_list = 251, - sym__field_declaration_list_item = 252, - sym_field_declaration = 253, - sym__field_declaration_declarator = 254, - sym_bitfield_clause = 255, - sym_enumerator = 256, - sym_variadic_parameter = 257, - sym_parameter_list = 258, - sym__old_style_parameter_list = 259, - sym_parameter_declaration = 260, - sym_attributed_statement = 261, - sym_statement = 262, - sym__top_level_statement = 263, - sym_labeled_statement = 264, - sym__top_level_expression_statement = 265, - sym_expression_statement = 266, - sym_if_statement = 267, - sym_else_clause = 268, - sym_switch_statement = 269, - sym_case_statement = 270, - sym_while_statement = 271, - sym_do_statement = 272, - sym_for_statement = 273, - sym__for_statement_body = 274, - sym_return_statement = 275, - sym_break_statement = 276, - sym_continue_statement = 277, - sym_goto_statement = 278, - sym_seh_try_statement = 279, - sym_seh_except_clause = 280, - sym_seh_finally_clause = 281, - sym_seh_leave_statement = 282, - sym_expression = 283, - sym__string = 284, - sym_comma_expression = 285, - sym_conditional_expression = 286, - sym_assignment_expression = 287, - sym_pointer_expression = 288, - sym_unary_expression = 289, - sym_binary_expression = 290, - sym_update_expression = 291, - sym_cast_expression = 292, - sym_type_descriptor = 293, - sym_sizeof_expression = 294, - sym_alignof_expression = 295, - sym_offsetof_expression = 296, - sym_generic_expression = 297, - sym_subscript_expression = 298, - sym_call_expression = 299, - sym_gnu_asm_expression = 300, - sym_gnu_asm_qualifier = 301, - sym_gnu_asm_output_operand_list = 302, - sym_gnu_asm_output_operand = 303, - sym_gnu_asm_input_operand_list = 304, - sym_gnu_asm_input_operand = 305, - sym_gnu_asm_clobber_list = 306, - sym_gnu_asm_goto_list = 307, - sym_extension_expression = 308, - sym_argument_list = 309, - sym_field_expression = 310, - sym_compound_literal_expression = 311, - sym_parenthesized_expression = 312, - sym_initializer_list = 313, - sym_initializer_pair = 314, - sym_subscript_designator = 315, - sym_subscript_range_designator = 316, - sym_field_designator = 317, - sym_char_literal = 318, - sym_concatenated_string = 319, - sym_string_literal = 320, - sym_null = 321, - sym__empty_declaration = 322, - sym_macro_type_specifier = 323, - aux_sym_translation_unit_repeat1 = 324, - aux_sym_preproc_params_repeat1 = 325, - aux_sym_preproc_if_repeat1 = 326, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 327, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 328, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 329, - aux_sym_preproc_argument_list_repeat1 = 330, - aux_sym__old_style_function_definition_repeat1 = 331, - aux_sym_declaration_repeat1 = 332, - aux_sym_type_definition_repeat1 = 333, - aux_sym__type_definition_type_repeat1 = 334, - aux_sym__type_definition_declarators_repeat1 = 335, - aux_sym__declaration_specifiers_repeat1 = 336, - aux_sym_attribute_declaration_repeat1 = 337, - aux_sym_attributed_declarator_repeat1 = 338, - aux_sym_pointer_declarator_repeat1 = 339, - aux_sym_function_declarator_repeat1 = 340, - aux_sym_array_declarator_repeat1 = 341, - aux_sym_sized_type_specifier_repeat1 = 342, - aux_sym_enumerator_list_repeat1 = 343, - aux_sym__field_declaration_declarator_repeat1 = 344, - aux_sym_parameter_list_repeat1 = 345, - aux_sym__old_style_parameter_list_repeat1 = 346, - aux_sym_case_statement_repeat1 = 347, - aux_sym_generic_expression_repeat1 = 348, - aux_sym_gnu_asm_expression_repeat1 = 349, - aux_sym_gnu_asm_output_operand_list_repeat1 = 350, - aux_sym_gnu_asm_input_operand_list_repeat1 = 351, - aux_sym_gnu_asm_clobber_list_repeat1 = 352, - aux_sym_gnu_asm_goto_list_repeat1 = 353, - aux_sym_argument_list_repeat1 = 354, - aux_sym_initializer_list_repeat1 = 355, - aux_sym_initializer_pair_repeat1 = 356, - aux_sym_char_literal_repeat1 = 357, - aux_sym_concatenated_string_repeat1 = 358, - aux_sym_string_literal_repeat1 = 359, - alias_sym_field_identifier = 360, - alias_sym_statement_identifier = 361, - alias_sym_type_identifier = 362, + sym_identifier = 2, + aux_sym_preproc_include_token1 = 3, + aux_sym_preproc_include_token2 = 4, + aux_sym_preproc_def_token1 = 5, + anon_sym_LPAREN = 6, + anon_sym_DOT_DOT_DOT = 7, + anon_sym_COMMA = 8, + anon_sym_RPAREN = 9, + aux_sym_preproc_if_token1 = 10, + anon_sym_LF = 11, + aux_sym_preproc_if_token2 = 12, + aux_sym_preproc_ifdef_token1 = 13, + aux_sym_preproc_ifdef_token2 = 14, + aux_sym_preproc_else_token1 = 15, + aux_sym_preproc_elif_token1 = 16, + aux_sym_preproc_elifdef_token1 = 17, + aux_sym_preproc_elifdef_token2 = 18, + sym_preproc_arg = 19, + sym_preproc_directive = 20, + anon_sym_LPAREN2 = 21, + anon_sym_defined = 22, + anon_sym_BANG = 23, + anon_sym_TILDE = 24, + anon_sym_DASH = 25, + anon_sym_PLUS = 26, + anon_sym_STAR = 27, + anon_sym_SLASH = 28, + anon_sym_PERCENT = 29, + anon_sym_PIPE_PIPE = 30, + anon_sym_AMP_AMP = 31, + anon_sym_PIPE = 32, + anon_sym_CARET = 33, + anon_sym_AMP = 34, + anon_sym_EQ_EQ = 35, + anon_sym_BANG_EQ = 36, + anon_sym_GT = 37, + anon_sym_GT_EQ = 38, + anon_sym_LT_EQ = 39, + anon_sym_LT = 40, + anon_sym_LT_LT = 41, + anon_sym_GT_GT = 42, + anon_sym_SEMI = 43, + anon_sym___extension__ = 44, + anon_sym_typedef = 45, + anon_sym_extern = 46, + anon_sym___attribute__ = 47, + anon_sym___attribute = 48, + anon_sym_const = 49, + anon_sym_COLON_COLON = 50, + anon_sym_LBRACK_LBRACK = 51, + anon_sym_RBRACK_RBRACK = 52, + anon_sym___declspec = 53, + anon_sym___based = 54, + anon_sym___cdecl = 55, + anon_sym___clrcall = 56, + anon_sym___stdcall = 57, + anon_sym___fastcall = 58, + anon_sym___thiscall = 59, + anon_sym___vectorcall = 60, + sym_ms_restrict_modifier = 61, + sym_ms_unsigned_ptr_modifier = 62, + sym_ms_signed_ptr_modifier = 63, + anon_sym__unaligned = 64, + anon_sym___unaligned = 65, + anon_sym_LBRACE = 66, + anon_sym_RBRACE = 67, + anon_sym_signed = 68, + anon_sym_unsigned = 69, + anon_sym_long = 70, + anon_sym_short = 71, + anon_sym_LBRACK = 72, + anon_sym_static = 73, + anon_sym_RBRACK = 74, + anon_sym_EQ = 75, + anon_sym_auto = 76, + anon_sym_register = 77, + anon_sym_inline = 78, + anon_sym___inline = 79, + anon_sym___inline__ = 80, + anon_sym___forceinline = 81, + anon_sym_thread_local = 82, + anon_sym___thread = 83, + anon_sym_constexpr = 84, + anon_sym_volatile = 85, + anon_sym_restrict = 86, + anon_sym___restrict__ = 87, + anon_sym__Atomic = 88, + anon_sym__Noreturn = 89, + anon_sym_noreturn = 90, + anon_sym__Nonnull = 91, + anon_sym_alignas = 92, + anon_sym__Alignas = 93, + sym_primitive_type = 94, + anon_sym_enum = 95, + anon_sym_COLON = 96, + anon_sym_struct = 97, + anon_sym_union = 98, + anon_sym_if = 99, + anon_sym_else = 100, + anon_sym_switch = 101, + anon_sym_case = 102, + anon_sym_default = 103, + anon_sym_while = 104, + anon_sym_do = 105, + anon_sym_for = 106, + anon_sym_return = 107, + anon_sym_break = 108, + anon_sym_continue = 109, + anon_sym_goto = 110, + anon_sym___try = 111, + anon_sym___except = 112, + anon_sym___finally = 113, + anon_sym___leave = 114, + anon_sym_QMARK = 115, + anon_sym_STAR_EQ = 116, + anon_sym_SLASH_EQ = 117, + anon_sym_PERCENT_EQ = 118, + anon_sym_PLUS_EQ = 119, + anon_sym_DASH_EQ = 120, + anon_sym_LT_LT_EQ = 121, + anon_sym_GT_GT_EQ = 122, + anon_sym_AMP_EQ = 123, + anon_sym_CARET_EQ = 124, + anon_sym_PIPE_EQ = 125, + anon_sym_DASH_DASH = 126, + anon_sym_PLUS_PLUS = 127, + anon_sym_sizeof = 128, + anon_sym___alignof__ = 129, + anon_sym___alignof = 130, + anon_sym__alignof = 131, + anon_sym_alignof = 132, + anon_sym__Alignof = 133, + anon_sym_offsetof = 134, + anon_sym__Generic = 135, + anon_sym_asm = 136, + anon_sym___asm__ = 137, + anon_sym___asm = 138, + anon_sym___volatile__ = 139, + anon_sym_DOT = 140, + anon_sym_DASH_GT = 141, + sym_number_literal = 142, + anon_sym_L_SQUOTE = 143, + anon_sym_u_SQUOTE = 144, + anon_sym_U_SQUOTE = 145, + anon_sym_u8_SQUOTE = 146, + anon_sym_SQUOTE = 147, + aux_sym_char_literal_token1 = 148, + anon_sym_L_DQUOTE = 149, + anon_sym_u_DQUOTE = 150, + anon_sym_U_DQUOTE = 151, + anon_sym_u8_DQUOTE = 152, + anon_sym_DQUOTE = 153, + aux_sym_string_literal_token1 = 154, + sym_escape_sequence = 155, + sym_system_lib_string = 156, + sym_true = 157, + sym_false = 158, + anon_sym_NULL = 159, + anon_sym_nullptr = 160, + sym_comment = 161, + sym_translation_unit = 162, + sym__top_level_item = 163, + sym__block_item = 164, + sym_preproc_include = 165, + sym_preproc_def = 166, + sym_preproc_function_def = 167, + sym_preproc_params = 168, + sym_preproc_call = 169, + sym_preproc_if = 170, + sym_preproc_ifdef = 171, + sym_preproc_else = 172, + sym_preproc_elif = 173, + sym_preproc_elifdef = 174, + sym_preproc_if_in_field_declaration_list = 175, + sym_preproc_ifdef_in_field_declaration_list = 176, + sym_preproc_else_in_field_declaration_list = 177, + sym_preproc_elif_in_field_declaration_list = 178, + sym_preproc_elifdef_in_field_declaration_list = 179, + sym_preproc_if_in_enumerator_list = 180, + sym_preproc_ifdef_in_enumerator_list = 181, + sym_preproc_else_in_enumerator_list = 182, + sym_preproc_elif_in_enumerator_list = 183, + sym_preproc_elifdef_in_enumerator_list = 184, + sym_preproc_if_in_enumerator_list_no_comma = 185, + sym_preproc_ifdef_in_enumerator_list_no_comma = 186, + sym_preproc_else_in_enumerator_list_no_comma = 187, + sym_preproc_elif_in_enumerator_list_no_comma = 188, + sym_preproc_elifdef_in_enumerator_list_no_comma = 189, + sym__preproc_expression = 190, + sym_preproc_parenthesized_expression = 191, + sym_preproc_defined = 192, + sym_preproc_unary_expression = 193, + sym_preproc_call_expression = 194, + sym_preproc_argument_list = 195, + sym_preproc_binary_expression = 196, + sym_function_definition = 197, + sym__old_style_function_definition = 198, + sym_declaration = 199, + sym_type_definition = 200, + sym__type_definition_type = 201, + sym__type_definition_declarators = 202, + sym__declaration_modifiers = 203, + sym__declaration_specifiers = 204, + sym_linkage_specification = 205, + sym_attribute_specifier = 206, + sym__attribute_argument_list = 207, + sym_attribute = 208, + sym_attribute_declaration = 209, + sym_ms_declspec_modifier = 210, + sym_ms_based_modifier = 211, + sym_ms_call_modifier = 212, + sym_ms_unaligned_ptr_modifier = 213, + sym_ms_pointer_modifier = 214, + sym_declaration_list = 215, + sym__declarator = 216, + sym__declaration_declarator = 217, + sym__field_declarator = 218, + sym__type_declarator = 219, + sym__abstract_declarator = 220, + sym_parenthesized_declarator = 221, + sym_parenthesized_field_declarator = 222, + sym_parenthesized_type_declarator = 223, + sym_abstract_parenthesized_declarator = 224, + sym_attributed_declarator = 225, + sym_attributed_field_declarator = 226, + sym_attributed_type_declarator = 227, + sym_pointer_declarator = 228, + sym_pointer_field_declarator = 229, + sym_pointer_type_declarator = 230, + sym_abstract_pointer_declarator = 231, + sym_function_declarator = 232, + sym__function_declaration_declarator = 233, + sym_function_field_declarator = 234, + sym_function_type_declarator = 235, + sym_abstract_function_declarator = 236, + sym__old_style_function_declarator = 237, + sym_array_declarator = 238, + sym_array_field_declarator = 239, + sym_array_type_declarator = 240, + sym_abstract_array_declarator = 241, + sym_init_declarator = 242, + sym_compound_statement = 243, + sym_storage_class_specifier = 244, + sym_type_qualifier = 245, + sym_alignas_qualifier = 246, + sym_type_specifier = 247, + sym_sized_type_specifier = 248, + sym_enum_specifier = 249, + sym_enumerator_list = 250, + sym_struct_specifier = 251, + sym_union_specifier = 252, + sym_field_declaration_list = 253, + sym__field_declaration_list_item = 254, + sym_field_declaration = 255, + sym__field_declaration_declarator = 256, + sym_bitfield_clause = 257, + sym_enumerator = 258, + sym_variadic_parameter = 259, + sym_parameter_list = 260, + sym__old_style_parameter_list = 261, + sym_parameter_declaration = 262, + sym_attributed_statement = 263, + sym_statement = 264, + sym__top_level_statement = 265, + sym_labeled_statement = 266, + sym__top_level_expression_statement = 267, + sym_expression_statement = 268, + sym_if_statement = 269, + sym_else_clause = 270, + sym_switch_statement = 271, + sym_case_statement = 272, + sym_while_statement = 273, + sym_do_statement = 274, + sym_for_statement = 275, + sym__for_statement_body = 276, + sym_return_statement = 277, + sym_break_statement = 278, + sym_continue_statement = 279, + sym_goto_statement = 280, + sym_seh_try_statement = 281, + sym_seh_except_clause = 282, + sym_seh_finally_clause = 283, + sym_seh_leave_statement = 284, + sym_expression = 285, + sym__string = 286, + sym_comma_expression = 287, + sym_conditional_expression = 288, + sym_assignment_expression = 289, + sym_pointer_expression = 290, + sym_unary_expression = 291, + sym_binary_expression = 292, + sym_update_expression = 293, + sym_cast_expression = 294, + sym_type_descriptor = 295, + sym_sizeof_expression = 296, + sym_alignof_expression = 297, + sym_offsetof_expression = 298, + sym_generic_expression = 299, + sym_subscript_expression = 300, + sym_call_expression = 301, + sym_gnu_asm_expression = 302, + sym_gnu_asm_qualifier = 303, + sym_gnu_asm_output_operand_list = 304, + sym_gnu_asm_output_operand = 305, + sym_gnu_asm_input_operand_list = 306, + sym_gnu_asm_input_operand = 307, + sym_gnu_asm_clobber_list = 308, + sym_gnu_asm_goto_list = 309, + sym_extension_expression = 310, + sym_argument_list = 311, + sym_field_expression = 312, + sym_compound_literal_expression = 313, + sym_parenthesized_expression = 314, + sym_initializer_list = 315, + sym_initializer_pair = 316, + sym_subscript_designator = 317, + sym_subscript_range_designator = 318, + sym_field_designator = 319, + sym_char_literal = 320, + sym_concatenated_string = 321, + sym_string_literal = 322, + sym_null = 323, + sym__empty_declaration = 324, + sym_macro_type_specifier = 325, + aux_sym_translation_unit_repeat1 = 326, + aux_sym_preproc_params_repeat1 = 327, + aux_sym_preproc_if_repeat1 = 328, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 329, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 330, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 331, + aux_sym_preproc_argument_list_repeat1 = 332, + aux_sym__old_style_function_definition_repeat1 = 333, + aux_sym_declaration_repeat1 = 334, + aux_sym_type_definition_repeat1 = 335, + aux_sym__type_definition_type_repeat1 = 336, + aux_sym__type_definition_declarators_repeat1 = 337, + aux_sym__declaration_specifiers_repeat1 = 338, + aux_sym__attribute_argument_list_repeat1 = 339, + aux_sym_attribute_declaration_repeat1 = 340, + aux_sym_attributed_declarator_repeat1 = 341, + aux_sym_pointer_declarator_repeat1 = 342, + aux_sym_function_declarator_repeat1 = 343, + aux_sym_array_declarator_repeat1 = 344, + aux_sym_sized_type_specifier_repeat1 = 345, + aux_sym_enumerator_list_repeat1 = 346, + aux_sym__field_declaration_declarator_repeat1 = 347, + aux_sym_parameter_list_repeat1 = 348, + aux_sym__old_style_parameter_list_repeat1 = 349, + aux_sym_case_statement_repeat1 = 350, + aux_sym_generic_expression_repeat1 = 351, + aux_sym_gnu_asm_expression_repeat1 = 352, + aux_sym_gnu_asm_output_operand_list_repeat1 = 353, + aux_sym_gnu_asm_input_operand_list_repeat1 = 354, + aux_sym_gnu_asm_clobber_list_repeat1 = 355, + aux_sym_gnu_asm_goto_list_repeat1 = 356, + aux_sym_argument_list_repeat1 = 357, + aux_sym_initializer_list_repeat1 = 358, + aux_sym_initializer_pair_repeat1 = 359, + aux_sym_char_literal_repeat1 = 360, + aux_sym_concatenated_string_repeat1 = 361, + aux_sym_string_literal_repeat1 = 362, + alias_sym_field_identifier = 363, + alias_sym_statement_identifier = 364, + alias_sym_type_identifier = 365, }; static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", + [ts_builtin_sym_non_reserved_keyword] = "identifier", [sym_identifier] = "identifier", + [ts_builtin_sym_end] = "end", [aux_sym_preproc_include_token1] = "#include", [aux_sym_preproc_include_token2] = "preproc_include_token2", [aux_sym_preproc_def_token1] = "#define", @@ -437,6 +443,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_extern] = "extern", [anon_sym___attribute__] = "__attribute__", [anon_sym___attribute] = "__attribute", + [anon_sym_const] = "const", [anon_sym_COLON_COLON] = "::", [anon_sym_LBRACK_LBRACK] = "[[", [anon_sym_RBRACK_RBRACK] = "]]", @@ -471,7 +478,6 @@ static const char * const ts_symbol_names[] = { [anon_sym___forceinline] = "__forceinline", [anon_sym_thread_local] = "thread_local", [anon_sym___thread] = "__thread", - [anon_sym_const] = "const", [anon_sym_constexpr] = "constexpr", [anon_sym_volatile] = "volatile", [anon_sym_restrict] = "restrict", @@ -595,6 +601,7 @@ static const char * const ts_symbol_names[] = { [sym__declaration_specifiers] = "_declaration_specifiers", [sym_linkage_specification] = "linkage_specification", [sym_attribute_specifier] = "attribute_specifier", + [sym__attribute_argument_list] = "argument_list", [sym_attribute] = "attribute", [sym_attribute_declaration] = "attribute_declaration", [sym_ms_declspec_modifier] = "ms_declspec_modifier", @@ -726,6 +733,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__type_definition_type_repeat1] = "_type_definition_type_repeat1", [aux_sym__type_definition_declarators_repeat1] = "_type_definition_declarators_repeat1", [aux_sym__declaration_specifiers_repeat1] = "_declaration_specifiers_repeat1", + [aux_sym__attribute_argument_list_repeat1] = "_attribute_argument_list_repeat1", [aux_sym_attribute_declaration_repeat1] = "attribute_declaration_repeat1", [aux_sym_attributed_declarator_repeat1] = "attributed_declarator_repeat1", [aux_sym_pointer_declarator_repeat1] = "pointer_declarator_repeat1", @@ -755,8 +763,9 @@ static const char * const ts_symbol_names[] = { }; static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_non_reserved_keyword] = ts_builtin_sym_non_reserved_keyword, + [sym_identifier] = ts_builtin_sym_non_reserved_keyword, [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym_identifier] = sym_identifier, [aux_sym_preproc_include_token1] = aux_sym_preproc_include_token1, [aux_sym_preproc_include_token2] = aux_sym_preproc_include_token2, [aux_sym_preproc_def_token1] = aux_sym_preproc_def_token1, @@ -803,6 +812,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_extern] = anon_sym_extern, [anon_sym___attribute__] = anon_sym___attribute__, [anon_sym___attribute] = anon_sym___attribute, + [anon_sym_const] = anon_sym_const, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym_LBRACK_LBRACK] = anon_sym_LBRACK_LBRACK, [anon_sym_RBRACK_RBRACK] = anon_sym_RBRACK_RBRACK, @@ -837,7 +847,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym___forceinline] = anon_sym___forceinline, [anon_sym_thread_local] = anon_sym_thread_local, [anon_sym___thread] = anon_sym___thread, - [anon_sym_const] = anon_sym_const, [anon_sym_constexpr] = anon_sym_constexpr, [anon_sym_volatile] = anon_sym_volatile, [anon_sym_restrict] = anon_sym_restrict, @@ -961,6 +970,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__declaration_specifiers] = sym__declaration_specifiers, [sym_linkage_specification] = sym_linkage_specification, [sym_attribute_specifier] = sym_attribute_specifier, + [sym__attribute_argument_list] = sym_argument_list, [sym_attribute] = sym_attribute, [sym_attribute_declaration] = sym_attribute_declaration, [sym_ms_declspec_modifier] = sym_ms_declspec_modifier, @@ -1092,6 +1102,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__type_definition_type_repeat1] = aux_sym__type_definition_type_repeat1, [aux_sym__type_definition_declarators_repeat1] = aux_sym__type_definition_declarators_repeat1, [aux_sym__declaration_specifiers_repeat1] = aux_sym__declaration_specifiers_repeat1, + [aux_sym__attribute_argument_list_repeat1] = aux_sym__attribute_argument_list_repeat1, [aux_sym_attribute_declaration_repeat1] = aux_sym_attribute_declaration_repeat1, [aux_sym_attributed_declarator_repeat1] = aux_sym_attributed_declarator_repeat1, [aux_sym_pointer_declarator_repeat1] = aux_sym_pointer_declarator_repeat1, @@ -1121,14 +1132,18 @@ static const TSSymbol ts_symbol_map[] = { }; static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, + [ts_builtin_sym_non_reserved_keyword] = { + .visible = true, .named = true, }, [sym_identifier] = { .visible = true, .named = true, }, + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, [aux_sym_preproc_include_token1] = { .visible = true, .named = false, @@ -1313,6 +1328,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_const] = { + .visible = true, + .named = false, + }, [anon_sym_COLON_COLON] = { .visible = true, .named = false, @@ -1449,10 +1468,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_const] = { - .visible = true, - .named = false, - }, [anon_sym_constexpr] = { .visible = true, .named = false, @@ -1945,6 +1960,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__attribute_argument_list] = { + .visible = true, + .named = true, + }, [sym_attribute] = { .visible = true, .named = true, @@ -2476,6 +2495,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__attribute_argument_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_attribute_declaration_repeat1] = { .visible = false, .named = false, @@ -2742,60 +2765,60 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [75] = {.index = 130, .length = 1}, [76] = {.index = 131, .length = 2}, [77] = {.index = 133, .length = 2}, - [78] = {.index = 135, .length = 2}, - [79] = {.index = 137, .length = 3}, - [80] = {.index = 140, .length = 2}, - [81] = {.index = 142, .length = 2}, - [82] = {.index = 144, .length = 2}, - [83] = {.index = 146, .length = 1}, - [84] = {.index = 147, .length = 2}, - [85] = {.index = 149, .length = 2}, - [86] = {.index = 151, .length = 4}, - [87] = {.index = 155, .length = 1}, - [88] = {.index = 156, .length = 2}, - [89] = {.index = 158, .length = 1}, - [90] = {.index = 159, .length = 1}, - [91] = {.index = 160, .length = 4}, - [92] = {.index = 164, .length = 4}, - [93] = {.index = 168, .length = 2}, - [94] = {.index = 170, .length = 2}, - [95] = {.index = 172, .length = 3}, - [96] = {.index = 175, .length = 5}, - [97] = {.index = 180, .length = 3}, - [98] = {.index = 183, .length = 2}, - [99] = {.index = 185, .length = 1}, - [101] = {.index = 186, .length = 2}, - [102] = {.index = 188, .length = 2}, - [103] = {.index = 190, .length = 2}, - [104] = {.index = 192, .length = 3}, - [105] = {.index = 195, .length = 2}, - [106] = {.index = 197, .length = 2}, - [107] = {.index = 199, .length = 2}, - [108] = {.index = 201, .length = 2}, - [109] = {.index = 203, .length = 3}, - [110] = {.index = 206, .length = 2}, - [111] = {.index = 208, .length = 1}, - [112] = {.index = 209, .length = 5}, - [113] = {.index = 214, .length = 2}, - [114] = {.index = 216, .length = 3}, - [115] = {.index = 219, .length = 2}, + [79] = {.index = 135, .length = 2}, + [80] = {.index = 137, .length = 3}, + [81] = {.index = 140, .length = 2}, + [82] = {.index = 142, .length = 2}, + [83] = {.index = 144, .length = 2}, + [84] = {.index = 146, .length = 1}, + [85] = {.index = 147, .length = 2}, + [86] = {.index = 149, .length = 2}, + [87] = {.index = 151, .length = 4}, + [88] = {.index = 155, .length = 1}, + [89] = {.index = 156, .length = 2}, + [90] = {.index = 158, .length = 1}, + [91] = {.index = 159, .length = 1}, + [92] = {.index = 160, .length = 4}, + [93] = {.index = 164, .length = 4}, + [94] = {.index = 168, .length = 2}, + [95] = {.index = 170, .length = 2}, + [96] = {.index = 172, .length = 3}, + [97] = {.index = 175, .length = 5}, + [98] = {.index = 180, .length = 3}, + [99] = {.index = 183, .length = 2}, + [100] = {.index = 185, .length = 1}, + [102] = {.index = 186, .length = 2}, + [103] = {.index = 188, .length = 2}, + [104] = {.index = 190, .length = 2}, + [105] = {.index = 192, .length = 3}, + [106] = {.index = 195, .length = 2}, + [107] = {.index = 197, .length = 2}, + [108] = {.index = 199, .length = 2}, + [109] = {.index = 201, .length = 2}, + [110] = {.index = 203, .length = 3}, + [111] = {.index = 206, .length = 2}, + [112] = {.index = 208, .length = 1}, + [113] = {.index = 209, .length = 5}, + [114] = {.index = 214, .length = 2}, + [115] = {.index = 216, .length = 3}, [116] = {.index = 219, .length = 2}, - [117] = {.index = 221, .length = 3}, - [118] = {.index = 224, .length = 2}, - [119] = {.index = 226, .length = 1}, - [120] = {.index = 227, .length = 4}, - [121] = {.index = 231, .length = 3}, - [122] = {.index = 234, .length = 2}, - [123] = {.index = 236, .length = 2}, - [124] = {.index = 35, .length = 1}, - [125] = {.index = 238, .length = 5}, - [126] = {.index = 243, .length = 4}, - [127] = {.index = 247, .length = 2}, - [128] = {.index = 249, .length = 2}, - [129] = {.index = 251, .length = 2}, - [130] = {.index = 253, .length = 5}, - [131] = {.index = 258, .length = 2}, - [132] = {.index = 260, .length = 3}, + [117] = {.index = 219, .length = 2}, + [118] = {.index = 221, .length = 3}, + [119] = {.index = 224, .length = 2}, + [120] = {.index = 226, .length = 1}, + [121] = {.index = 227, .length = 4}, + [122] = {.index = 231, .length = 3}, + [123] = {.index = 234, .length = 2}, + [124] = {.index = 236, .length = 2}, + [125] = {.index = 35, .length = 1}, + [126] = {.index = 238, .length = 5}, + [127] = {.index = 243, .length = 4}, + [128] = {.index = 247, .length = 2}, + [129] = {.index = 249, .length = 2}, + [130] = {.index = 251, .length = 2}, + [131] = {.index = 253, .length = 5}, + [132] = {.index = 258, .length = 2}, + [133] = {.index = 260, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3233,21 +3256,27 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [55] = { [3] = alias_sym_type_identifier, }, - [79] = { + [78] = { + [1] = ts_builtin_sym_non_reserved_keyword, + }, + [80] = { [1] = alias_sym_type_identifier, }, - [81] = { + [82] = { [3] = alias_sym_type_identifier, }, - [100] = { + [101] = { [1] = alias_sym_field_identifier, }, - [107] = { + [108] = { [4] = alias_sym_field_identifier, }, - [115] = { + [116] = { [0] = alias_sym_field_identifier, }, + [134] = { + [0] = ts_builtin_sym_non_reserved_keyword, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -3266,38 +3295,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 8, [9] = 9, [10] = 2, - [11] = 4, - [12] = 3, + [11] = 3, + [12] = 4, [13] = 5, [14] = 2, - [15] = 4, - [16] = 3, + [15] = 3, + [16] = 4, [17] = 5, [18] = 2, - [19] = 4, - [20] = 3, + [19] = 3, + [20] = 4, [21] = 5, [22] = 22, [23] = 23, - [24] = 22, - [25] = 23, + [24] = 24, + [25] = 25, [26] = 26, - [27] = 27, - [28] = 27, - [29] = 29, - [30] = 30, - [31] = 27, - [32] = 29, - [33] = 23, - [34] = 30, - [35] = 35, - [36] = 30, - [37] = 30, - [38] = 29, + [27] = 23, + [28] = 28, + [29] = 22, + [30] = 26, + [31] = 23, + [32] = 25, + [33] = 25, + [34] = 26, + [35] = 28, + [36] = 28, + [37] = 22, + [38] = 38, [39] = 23, - [40] = 22, - [41] = 27, - [42] = 29, + [40] = 26, + [41] = 25, + [42] = 28, [43] = 43, [44] = 44, [45] = 45, @@ -3305,84 +3334,84 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 48, - [51] = 46, - [52] = 46, - [53] = 47, - [54] = 45, - [55] = 48, - [56] = 49, - [57] = 45, - [58] = 46, - [59] = 48, - [60] = 47, + [50] = 47, + [51] = 49, + [52] = 48, + [53] = 45, + [54] = 54, + [55] = 54, + [56] = 46, + [57] = 54, + [58] = 54, + [59] = 49, + [60] = 45, [61] = 49, - [62] = 45, - [63] = 47, - [64] = 49, - [65] = 65, - [66] = 65, - [67] = 46, - [68] = 65, + [62] = 47, + [63] = 48, + [64] = 46, + [65] = 47, + [66] = 48, + [67] = 45, + [68] = 46, [69] = 45, - [70] = 48, + [70] = 49, [71] = 47, - [72] = 49, - [73] = 65, - [74] = 65, - [75] = 75, - [76] = 75, - [77] = 75, - [78] = 75, - [79] = 75, - [80] = 80, - [81] = 81, - [82] = 82, - [83] = 83, - [84] = 84, + [72] = 48, + [73] = 46, + [74] = 46, + [75] = 48, + [76] = 47, + [77] = 49, + [78] = 48, + [79] = 45, + [80] = 47, + [81] = 49, + [82] = 46, + [83] = 45, + [84] = 46, [85] = 85, - [86] = 86, - [87] = 87, - [88] = 88, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 95, - [96] = 96, - [97] = 97, - [98] = 98, + [86] = 85, + [87] = 85, + [88] = 85, + [89] = 85, + [90] = 85, + [91] = 85, + [92] = 48, + [93] = 85, + [94] = 49, + [95] = 47, + [96] = 85, + [97] = 45, + [98] = 85, [99] = 99, - [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, + [100] = 99, + [101] = 99, + [102] = 99, + [103] = 99, [104] = 104, [105] = 105, - [106] = 106, - [107] = 107, - [108] = 108, + [106] = 105, + [107] = 105, + [108] = 105, [109] = 109, - [110] = 110, + [110] = 109, [111] = 111, - [112] = 112, - [113] = 113, - [114] = 114, - [115] = 109, - [116] = 116, - [117] = 106, - [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, - [122] = 122, - [123] = 123, - [124] = 124, - [125] = 125, + [112] = 109, + [113] = 109, + [114] = 111, + [115] = 115, + [116] = 115, + [117] = 115, + [118] = 115, + [119] = 115, + [120] = 115, + [121] = 115, + [122] = 115, + [123] = 115, + [124] = 115, + [125] = 104, [126] = 126, - [127] = 127, + [127] = 126, [128] = 128, [129] = 129, [130] = 130, @@ -3403,531 +3432,531 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [145] = 145, [146] = 146, [147] = 147, - [148] = 80, - [149] = 80, - [150] = 80, - [151] = 91, - [152] = 101, - [153] = 102, - [154] = 103, - [155] = 104, - [156] = 105, - [157] = 109, - [158] = 98, - [159] = 110, - [160] = 99, - [161] = 111, - [162] = 100, - [163] = 111, - [164] = 112, - [165] = 113, - [166] = 101, - [167] = 114, - [168] = 118, - [169] = 108, - [170] = 106, - [171] = 102, - [172] = 97, - [173] = 116, - [174] = 103, - [175] = 118, - [176] = 104, - [177] = 82, - [178] = 107, - [179] = 109, - [180] = 110, - [181] = 108, - [182] = 111, - [183] = 112, - [184] = 113, - [185] = 114, - [186] = 118, - [187] = 108, - [188] = 106, - [189] = 83, - [190] = 116, - [191] = 84, - [192] = 85, - [193] = 82, - [194] = 83, - [195] = 84, - [196] = 85, - [197] = 88, - [198] = 89, - [199] = 90, - [200] = 86, - [201] = 87, - [202] = 95, - [203] = 96, - [204] = 81, - [205] = 97, - [206] = 98, - [207] = 81, - [208] = 103, - [209] = 104, - [210] = 86, - [211] = 87, - [212] = 91, - [213] = 92, - [214] = 93, - [215] = 94, - [216] = 100, - [217] = 101, - [218] = 102, - [219] = 105, - [220] = 116, - [221] = 88, - [222] = 89, - [223] = 90, - [224] = 82, - [225] = 83, - [226] = 84, - [227] = 85, - [228] = 86, - [229] = 105, - [230] = 107, - [231] = 91, - [232] = 92, - [233] = 93, - [234] = 94, - [235] = 87, - [236] = 113, - [237] = 95, - [238] = 96, - [239] = 81, - [240] = 88, - [241] = 114, - [242] = 89, - [243] = 90, - [244] = 97, - [245] = 112, - [246] = 96, - [247] = 92, - [248] = 93, - [249] = 94, - [250] = 110, - [251] = 107, - [252] = 98, - [253] = 99, - [254] = 100, - [255] = 95, - [256] = 99, - [257] = 145, - [258] = 141, - [259] = 142, - [260] = 144, - [261] = 145, - [262] = 143, + [148] = 145, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 140, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 104, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 126, + [197] = 126, + [198] = 126, + [199] = 126, + [200] = 126, + [201] = 153, + [202] = 141, + [203] = 134, + [204] = 142, + [205] = 138, + [206] = 145, + [207] = 128, + [208] = 139, + [209] = 132, + [210] = 150, + [211] = 132, + [212] = 133, + [213] = 134, + [214] = 155, + [215] = 151, + [216] = 156, + [217] = 143, + [218] = 136, + [219] = 138, + [220] = 145, + [221] = 130, + [222] = 132, + [223] = 133, + [224] = 134, + [225] = 136, + [226] = 128, + [227] = 139, + [228] = 140, + [229] = 157, + [230] = 143, + [231] = 146, + [232] = 147, + [233] = 149, + [234] = 159, + [235] = 163, + [236] = 164, + [237] = 137, + [238] = 128, + [239] = 150, + [240] = 151, + [241] = 152, + [242] = 153, + [243] = 154, + [244] = 155, + [245] = 160, + [246] = 144, + [247] = 139, + [248] = 140, + [249] = 130, + [250] = 158, + [251] = 143, + [252] = 161, + [253] = 162, + [254] = 146, + [255] = 131, + [256] = 135, + [257] = 141, + [258] = 142, + [259] = 156, + [260] = 157, + [261] = 158, + [262] = 129, [263] = 146, - [264] = 137, - [265] = 147, - [266] = 121, - [267] = 122, - [268] = 126, - [269] = 128, - [270] = 138, - [271] = 129, - [272] = 119, - [273] = 273, - [274] = 120, - [275] = 127, - [276] = 130, - [277] = 132, - [278] = 133, - [279] = 134, - [280] = 135, - [281] = 136, - [282] = 140, - [283] = 123, - [284] = 124, - [285] = 131, - [286] = 129, - [287] = 119, - [288] = 139, - [289] = 141, - [290] = 144, - [291] = 143, - [292] = 146, - [293] = 137, - [294] = 122, - [295] = 126, - [296] = 128, - [297] = 138, - [298] = 120, - [299] = 127, - [300] = 130, - [301] = 132, - [302] = 134, + [264] = 147, + [265] = 133, + [266] = 149, + [267] = 159, + [268] = 161, + [269] = 162, + [270] = 163, + [271] = 164, + [272] = 137, + [273] = 147, + [274] = 149, + [275] = 131, + [276] = 135, + [277] = 141, + [278] = 142, + [279] = 150, + [280] = 151, + [281] = 152, + [282] = 153, + [283] = 154, + [284] = 155, + [285] = 156, + [286] = 157, + [287] = 158, + [288] = 160, + [289] = 144, + [290] = 129, + [291] = 152, + [292] = 160, + [293] = 144, + [294] = 159, + [295] = 161, + [296] = 162, + [297] = 136, + [298] = 138, + [299] = 163, + [300] = 129, + [301] = 164, + [302] = 131, [303] = 135, - [304] = 136, - [305] = 140, - [306] = 123, - [307] = 124, - [308] = 125, - [309] = 131, - [310] = 142, - [311] = 145, - [312] = 147, - [313] = 121, - [314] = 133, - [315] = 131, - [316] = 139, - [317] = 125, - [318] = 273, - [319] = 319, - [320] = 146, - [321] = 137, - [322] = 322, - [323] = 123, - [324] = 124, - [325] = 125, - [326] = 143, - [327] = 327, - [328] = 328, - [329] = 147, - [330] = 121, - [331] = 331, - [332] = 122, - [333] = 333, - [334] = 334, - [335] = 126, - [336] = 128, - [337] = 138, - [338] = 338, - [339] = 327, - [340] = 340, - [341] = 322, - [342] = 120, - [343] = 127, - [344] = 130, - [345] = 132, - [346] = 133, - [347] = 134, - [348] = 135, - [349] = 349, - [350] = 328, - [351] = 334, - [352] = 333, - [353] = 327, - [354] = 322, - [355] = 334, - [356] = 333, - [357] = 139, - [358] = 327, - [359] = 322, - [360] = 136, - [361] = 349, - [362] = 362, - [363] = 328, - [364] = 334, - [365] = 333, - [366] = 333, - [367] = 141, - [368] = 328, - [369] = 142, - [370] = 327, - [371] = 322, - [372] = 334, - [373] = 349, - [374] = 144, - [375] = 349, - [376] = 331, - [377] = 140, - [378] = 349, - [379] = 331, - [380] = 331, - [381] = 328, - [382] = 382, - [383] = 382, - [384] = 382, - [385] = 382, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 387, - [390] = 273, - [391] = 386, - [392] = 386, - [393] = 387, - [394] = 386, - [395] = 387, - [396] = 386, - [397] = 387, - [398] = 387, - [399] = 386, - [400] = 400, - [401] = 400, - [402] = 402, - [403] = 403, - [404] = 273, - [405] = 273, - [406] = 80, - [407] = 407, - [408] = 408, - [409] = 408, - [410] = 408, - [411] = 408, - [412] = 408, - [413] = 408, - [414] = 408, - [415] = 408, - [416] = 416, - [417] = 273, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 388, - [431] = 431, - [432] = 432, - [433] = 433, + [304] = 154, + [305] = 137, + [306] = 130, + [307] = 184, + [308] = 170, + [309] = 171, + [310] = 172, + [311] = 173, + [312] = 185, + [313] = 174, + [314] = 186, + [315] = 187, + [316] = 167, + [317] = 168, + [318] = 175, + [319] = 188, + [320] = 171, + [321] = 172, + [322] = 176, + [323] = 192, + [324] = 177, + [325] = 325, + [326] = 178, + [327] = 179, + [328] = 180, + [329] = 166, + [330] = 181, + [331] = 194, + [332] = 173, + [333] = 195, + [334] = 169, + [335] = 174, + [336] = 192, + [337] = 190, + [338] = 126, + [339] = 169, + [340] = 170, + [341] = 190, + [342] = 185, + [343] = 186, + [344] = 187, + [345] = 182, + [346] = 126, + [347] = 175, + [348] = 176, + [349] = 177, + [350] = 179, + [351] = 178, + [352] = 180, + [353] = 183, + [354] = 166, + [355] = 184, + [356] = 181, + [357] = 193, + [358] = 188, + [359] = 194, + [360] = 183, + [361] = 195, + [362] = 191, + [363] = 193, + [364] = 188, + [365] = 194, + [366] = 167, + [367] = 182, + [368] = 168, + [369] = 191, + [370] = 325, + [371] = 371, + [372] = 371, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 175, + [380] = 380, + [381] = 376, + [382] = 378, + [383] = 383, + [384] = 384, + [385] = 374, + [386] = 383, + [387] = 376, + [388] = 176, + [389] = 380, + [390] = 380, + [391] = 190, + [392] = 177, + [393] = 378, + [394] = 178, + [395] = 374, + [396] = 378, + [397] = 376, + [398] = 380, + [399] = 378, + [400] = 179, + [401] = 180, + [402] = 166, + [403] = 380, + [404] = 383, + [405] = 374, + [406] = 383, + [407] = 376, + [408] = 378, + [409] = 181, + [410] = 376, + [411] = 191, + [412] = 380, + [413] = 378, + [414] = 195, + [415] = 192, + [416] = 167, + [417] = 371, + [418] = 168, + [419] = 371, + [420] = 371, + [421] = 374, + [422] = 193, + [423] = 383, + [424] = 169, + [425] = 170, + [426] = 374, + [427] = 185, + [428] = 376, + [429] = 186, + [430] = 187, + [431] = 376, + [432] = 171, + [433] = 383, [434] = 434, - [435] = 435, - [436] = 436, - [437] = 432, - [438] = 438, - [439] = 436, - [440] = 434, - [441] = 441, - [442] = 432, - [443] = 438, - [444] = 436, - [445] = 434, - [446] = 438, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, + [435] = 378, + [436] = 371, + [437] = 383, + [438] = 374, + [439] = 374, + [440] = 376, + [441] = 380, + [442] = 383, + [443] = 54, + [444] = 383, + [445] = 371, + [446] = 172, + [447] = 371, + [448] = 371, + [449] = 378, + [450] = 374, + [451] = 380, + [452] = 173, [453] = 453, - [454] = 454, - [455] = 455, - [456] = 452, - [457] = 452, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 460, - [462] = 459, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, + [454] = 378, + [455] = 174, + [456] = 377, + [457] = 182, + [458] = 377, + [459] = 376, + [460] = 377, + [461] = 371, + [462] = 380, + [463] = 374, + [464] = 383, + [465] = 380, + [466] = 453, + [467] = 453, [468] = 468, - [469] = 466, - [470] = 466, - [471] = 464, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 476, - [479] = 466, - [480] = 464, - [481] = 476, - [482] = 466, - [483] = 464, - [484] = 476, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 466, - [489] = 476, - [490] = 476, - [491] = 491, - [492] = 492, + [469] = 453, + [470] = 470, + [471] = 471, + [472] = 471, + [473] = 470, + [474] = 471, + [475] = 471, + [476] = 470, + [477] = 471, + [478] = 470, + [479] = 471, + [480] = 325, + [481] = 470, + [482] = 471, + [483] = 470, + [484] = 471, + [485] = 470, + [486] = 453, + [487] = 470, + [488] = 470, + [489] = 471, + [490] = 453, + [491] = 453, + [492] = 453, [493] = 493, - [494] = 494, - [495] = 495, + [494] = 453, + [495] = 493, [496] = 496, [497] = 497, [498] = 498, - [499] = 497, + [499] = 499, [500] = 500, [501] = 501, [502] = 502, - [503] = 497, - [504] = 504, - [505] = 505, - [506] = 497, + [503] = 325, + [504] = 501, + [505] = 501, + [506] = 325, [507] = 507, [508] = 508, [509] = 509, - [510] = 510, - [511] = 511, + [510] = 501, + [511] = 126, [512] = 512, [513] = 513, [514] = 514, - [515] = 508, - [516] = 510, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 512, - [521] = 521, + [515] = 325, + [516] = 516, + [517] = 514, + [518] = 514, + [519] = 514, + [520] = 514, + [521] = 514, [522] = 514, - [523] = 513, - [524] = 518, - [525] = 519, - [526] = 526, - [527] = 527, + [523] = 514, + [524] = 514, + [525] = 514, + [526] = 514, + [527] = 516, [528] = 528, - [529] = 529, - [530] = 509, - [531] = 531, - [532] = 532, - [533] = 531, + [529] = 514, + [530] = 514, + [531] = 516, + [532] = 516, + [533] = 516, [534] = 534, - [535] = 531, - [536] = 510, - [537] = 513, - [538] = 518, + [535] = 535, + [536] = 536, + [537] = 325, + [538] = 536, [539] = 539, - [540] = 540, - [541] = 508, + [540] = 539, + [541] = 534, [542] = 542, [543] = 543, - [544] = 526, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 519, - [549] = 545, - [550] = 416, - [551] = 526, - [552] = 547, - [553] = 527, - [554] = 514, - [555] = 528, - [556] = 529, - [557] = 557, - [558] = 513, - [559] = 510, - [560] = 543, - [561] = 545, - [562] = 546, - [563] = 527, - [564] = 547, - [565] = 529, + [544] = 325, + [545] = 534, + [546] = 543, + [547] = 534, + [548] = 543, + [549] = 549, + [550] = 534, + [551] = 543, + [552] = 552, + [553] = 553, + [554] = 543, + [555] = 534, + [556] = 543, + [557] = 534, + [558] = 553, + [559] = 543, + [560] = 553, + [561] = 553, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 565, [566] = 566, - [567] = 567, - [568] = 509, - [569] = 528, - [570] = 514, - [571] = 513, - [572] = 532, - [573] = 509, - [574] = 518, - [575] = 543, - [576] = 566, - [577] = 514, - [578] = 513, - [579] = 518, - [580] = 519, - [581] = 526, - [582] = 527, - [583] = 528, - [584] = 529, - [585] = 509, - [586] = 531, - [587] = 587, - [588] = 531, - [589] = 510, - [590] = 508, - [591] = 514, - [592] = 518, - [593] = 519, - [594] = 526, - [595] = 527, - [596] = 528, - [597] = 529, - [598] = 509, - [599] = 531, - [600] = 510, - [601] = 508, - [602] = 543, - [603] = 545, - [604] = 546, - [605] = 547, - [606] = 529, - [607] = 545, - [608] = 546, - [609] = 532, - [610] = 519, - [611] = 546, + [567] = 562, + [568] = 565, + [569] = 569, + [570] = 570, + [571] = 564, + [572] = 564, + [573] = 566, + [574] = 534, + [575] = 562, + [576] = 565, + [577] = 565, + [578] = 325, + [579] = 579, + [580] = 570, + [581] = 566, + [582] = 562, + [583] = 570, + [584] = 566, + [585] = 569, + [586] = 586, + [587] = 570, + [588] = 569, + [589] = 569, + [590] = 569, + [591] = 569, + [592] = 543, + [593] = 569, + [594] = 564, + [595] = 595, + [596] = 596, + [597] = 569, + [598] = 502, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, [612] = 612, - [613] = 532, - [614] = 547, - [615] = 532, - [616] = 543, - [617] = 587, - [618] = 545, - [619] = 546, - [620] = 547, - [621] = 526, - [622] = 527, - [623] = 528, - [624] = 508, - [625] = 543, - [626] = 566, - [627] = 587, + [613] = 613, + [614] = 614, + [615] = 611, + [616] = 612, + [617] = 617, + [618] = 613, + [619] = 614, + [620] = 611, + [621] = 613, + [622] = 612, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 614, + [627] = 627, [628] = 628, [629] = 629, [630] = 630, [631] = 631, - [632] = 632, + [632] = 630, [633] = 633, [634] = 634, - [635] = 635, + [635] = 630, [636] = 636, [637] = 637, [638] = 638, [639] = 639, - [640] = 640, + [640] = 638, [641] = 641, - [642] = 642, + [642] = 639, [643] = 643, [644] = 644, [645] = 645, [646] = 646, [647] = 647, - [648] = 648, + [648] = 646, [649] = 649, - [650] = 647, + [650] = 646, [651] = 651, - [652] = 649, - [653] = 649, - [654] = 647, - [655] = 648, - [656] = 651, - [657] = 647, - [658] = 649, - [659] = 648, - [660] = 651, - [661] = 651, - [662] = 648, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 402, + [652] = 652, + [653] = 652, + [654] = 652, + [655] = 655, + [656] = 646, + [657] = 657, + [658] = 646, + [659] = 646, + [660] = 646, + [661] = 652, + [662] = 652, + [663] = 652, + [664] = 652, + [665] = 646, + [666] = 652, + [667] = 646, + [668] = 668, [669] = 669, - [670] = 403, - [671] = 669, - [672] = 672, + [670] = 105, + [671] = 671, + [672] = 652, [673] = 673, [674] = 674, [675] = 675, @@ -3940,317 +3969,317 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [682] = 682, [683] = 675, [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, + [685] = 676, + [686] = 675, + [687] = 675, [688] = 688, [689] = 689, - [690] = 690, - [691] = 674, - [692] = 692, + [690] = 676, + [691] = 691, + [692] = 535, [693] = 693, - [694] = 674, - [695] = 675, - [696] = 675, - [697] = 674, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 697, [698] = 698, [699] = 699, [700] = 700, [701] = 701, [702] = 702, - [703] = 703, + [703] = 109, [704] = 704, [705] = 705, [706] = 706, [707] = 707, - [708] = 708, - [709] = 709, + [708] = 693, + [709] = 111, [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 673, - [715] = 715, - [716] = 699, - [717] = 717, - [718] = 631, - [719] = 631, - [720] = 703, - [721] = 721, + [711] = 699, + [712] = 700, + [713] = 702, + [714] = 704, + [715] = 705, + [716] = 706, + [717] = 693, + [718] = 694, + [719] = 695, + [720] = 696, + [721] = 707, [722] = 722, - [723] = 723, + [723] = 111, [724] = 724, - [725] = 725, - [726] = 402, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 403, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 734, - [735] = 735, - [736] = 736, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 741, - [742] = 742, - [743] = 743, + [725] = 699, + [726] = 700, + [727] = 702, + [728] = 704, + [729] = 705, + [730] = 706, + [731] = 693, + [732] = 694, + [733] = 695, + [734] = 696, + [735] = 699, + [736] = 707, + [737] = 722, + [738] = 698, + [739] = 722, + [740] = 694, + [741] = 701, + [742] = 724, + [743] = 700, [744] = 744, - [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, - [749] = 749, - [750] = 750, - [751] = 751, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, - [761] = 761, - [762] = 762, - [763] = 763, - [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 771, - [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, + [745] = 722, + [746] = 699, + [747] = 700, + [748] = 702, + [749] = 704, + [750] = 705, + [751] = 706, + [752] = 693, + [753] = 694, + [754] = 695, + [755] = 696, + [756] = 702, + [757] = 704, + [758] = 695, + [759] = 705, + [760] = 700, + [761] = 706, + [762] = 698, + [763] = 693, + [764] = 694, + [765] = 695, + [766] = 696, + [767] = 701, + [768] = 724, + [769] = 699, + [770] = 702, + [771] = 704, + [772] = 705, + [773] = 706, + [774] = 698, + [775] = 693, + [776] = 694, + [777] = 695, + [778] = 701, + [779] = 696, + [780] = 696, + [781] = 698, [782] = 782, [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 788, + [784] = 701, + [785] = 698, + [786] = 707, + [787] = 722, + [788] = 701, + [789] = 707, + [790] = 722, + [791] = 111, + [792] = 792, [793] = 793, - [794] = 794, - [795] = 795, - [796] = 788, - [797] = 797, - [798] = 793, - [799] = 788, - [800] = 793, - [801] = 801, - [802] = 131, - [803] = 142, - [804] = 788, - [805] = 145, - [806] = 147, - [807] = 121, - [808] = 133, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 793, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 821, - [825] = 825, + [794] = 722, + [795] = 724, + [796] = 699, + [797] = 700, + [798] = 702, + [799] = 704, + [800] = 705, + [801] = 706, + [802] = 693, + [803] = 694, + [804] = 695, + [805] = 696, + [806] = 109, + [807] = 111, + [808] = 808, + [809] = 111, + [810] = 724, + [811] = 707, + [812] = 722, + [813] = 111, + [814] = 699, + [815] = 702, + [816] = 704, + [817] = 705, + [818] = 706, + [819] = 693, + [820] = 694, + [821] = 695, + [822] = 696, + [823] = 707, + [824] = 722, + [825] = 698, [826] = 826, - [827] = 827, - [828] = 827, - [829] = 815, - [830] = 816, - [831] = 820, - [832] = 813, - [833] = 817, + [827] = 701, + [828] = 828, + [829] = 698, + [830] = 701, + [831] = 724, + [832] = 109, + [833] = 833, [834] = 834, - [835] = 819, - [836] = 826, - [837] = 825, - [838] = 834, - [839] = 839, - [840] = 631, - [841] = 823, - [842] = 839, - [843] = 682, - [844] = 844, - [845] = 682, - [846] = 642, - [847] = 797, - [848] = 783, - [849] = 638, - [850] = 850, - [851] = 147, - [852] = 121, + [835] = 835, + [836] = 698, + [837] = 109, + [838] = 707, + [839] = 826, + [840] = 744, + [841] = 744, + [842] = 707, + [843] = 699, + [844] = 109, + [845] = 700, + [846] = 702, + [847] = 701, + [848] = 704, + [849] = 111, + [850] = 705, + [851] = 706, + [852] = 700, [853] = 853, - [854] = 810, - [855] = 811, - [856] = 784, - [857] = 133, - [858] = 809, - [859] = 131, - [860] = 786, - [861] = 795, - [862] = 794, - [863] = 131, - [864] = 787, - [865] = 142, - [866] = 145, - [867] = 795, - [868] = 850, - [869] = 850, - [870] = 809, - [871] = 121, - [872] = 785, - [873] = 786, - [874] = 133, - [875] = 785, - [876] = 876, - [877] = 810, - [878] = 850, - [879] = 879, - [880] = 787, - [881] = 789, - [882] = 811, - [883] = 790, - [884] = 791, - [885] = 794, - [886] = 142, - [887] = 789, - [888] = 784, - [889] = 145, - [890] = 790, - [891] = 791, - [892] = 147, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 507, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 873, + [875] = 875, + [876] = 872, + [877] = 877, + [878] = 877, + [879] = 877, + [880] = 877, + [881] = 873, + [882] = 875, + [883] = 875, + [884] = 872, + [885] = 873, + [886] = 872, + [887] = 875, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, [893] = 893, - [894] = 894, - [895] = 702, - [896] = 700, + [894] = 507, + [895] = 893, + [896] = 896, [897] = 897, - [898] = 823, - [899] = 821, - [900] = 825, - [901] = 826, - [902] = 839, - [903] = 827, - [904] = 815, - [905] = 816, - [906] = 820, - [907] = 813, + [898] = 898, + [899] = 899, + [900] = 586, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, [908] = 908, - [909] = 817, - [910] = 834, - [911] = 819, - [912] = 708, - [913] = 707, - [914] = 704, - [915] = 705, - [916] = 916, - [917] = 917, - [918] = 86, - [919] = 94, - [920] = 100, - [921] = 101, - [922] = 102, + [909] = 909, + [910] = 910, + [911] = 552, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 899, + [917] = 907, + [918] = 899, + [919] = 907, + [920] = 899, + [921] = 907, + [922] = 922, [923] = 923, - [924] = 105, - [925] = 706, - [926] = 87, - [927] = 709, - [928] = 91, - [929] = 92, - [930] = 93, - [931] = 701, - [932] = 682, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 922, + [930] = 930, + [931] = 931, + [932] = 932, [933] = 933, - [934] = 934, + [934] = 857, [935] = 935, [936] = 936, - [937] = 92, - [938] = 93, - [939] = 94, + [937] = 930, + [938] = 938, + [939] = 939, [940] = 940, - [941] = 100, - [942] = 101, - [943] = 102, - [944] = 105, + [941] = 896, + [942] = 942, + [943] = 943, + [944] = 944, [945] = 945, - [946] = 946, - [947] = 87, - [948] = 91, - [949] = 86, + [946] = 498, + [947] = 947, + [948] = 499, + [949] = 949, [950] = 950, [951] = 951, [952] = 952, - [953] = 934, - [954] = 954, + [953] = 953, + [954] = 549, [955] = 955, [956] = 956, - [957] = 936, - [958] = 955, + [957] = 957, + [958] = 857, [959] = 959, [960] = 960, [961] = 961, [962] = 962, - [963] = 954, - [964] = 956, + [963] = 963, + [964] = 964, [965] = 965, - [966] = 960, - [967] = 816, + [966] = 966, + [967] = 967, [968] = 968, - [969] = 819, - [970] = 823, - [971] = 821, - [972] = 825, - [973] = 826, - [974] = 839, - [975] = 827, - [976] = 815, - [977] = 816, - [978] = 820, - [979] = 813, - [980] = 817, - [981] = 834, - [982] = 834, - [983] = 821, - [984] = 825, - [985] = 826, - [986] = 839, - [987] = 819, - [988] = 827, - [989] = 815, - [990] = 823, - [991] = 820, - [992] = 813, - [993] = 817, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 502, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, [994] = 994, - [995] = 994, + [995] = 995, [996] = 996, [997] = 997, [998] = 998, @@ -4261,489 +4290,489 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1003] = 1003, [1004] = 1004, [1005] = 1005, - [1006] = 994, - [1007] = 1007, - [1008] = 1001, - [1009] = 1001, - [1010] = 994, - [1011] = 1001, - [1012] = 1012, - [1013] = 1013, + [1006] = 1006, + [1007] = 1006, + [1008] = 169, + [1009] = 1009, + [1010] = 1010, + [1011] = 170, + [1012] = 1006, + [1013] = 1009, [1014] = 1014, - [1015] = 1014, + [1015] = 1015, [1016] = 1016, - [1017] = 1017, + [1017] = 857, [1018] = 1018, - [1019] = 1019, - [1020] = 818, - [1021] = 1021, - [1022] = 844, - [1023] = 1023, - [1024] = 1024, - [1025] = 1025, - [1026] = 1024, + [1019] = 1006, + [1020] = 1020, + [1021] = 1006, + [1022] = 194, + [1023] = 1006, + [1024] = 1006, + [1025] = 1006, + [1026] = 1026, [1027] = 1027, [1028] = 1028, - [1029] = 823, - [1030] = 821, - [1031] = 825, - [1032] = 826, - [1033] = 839, - [1034] = 827, - [1035] = 815, - [1036] = 816, - [1037] = 820, - [1038] = 813, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 971, + [1034] = 179, + [1035] = 1009, + [1036] = 192, + [1037] = 1009, + [1038] = 1038, [1039] = 1039, - [1040] = 817, - [1041] = 1039, - [1042] = 834, - [1043] = 1043, - [1044] = 879, + [1040] = 1006, + [1041] = 188, + [1042] = 1042, + [1043] = 1006, + [1044] = 1044, [1045] = 1045, - [1046] = 1046, + [1046] = 857, [1047] = 1047, [1048] = 1048, - [1049] = 1049, + [1049] = 1044, [1050] = 1050, - [1051] = 1051, - [1052] = 1049, + [1051] = 1047, + [1052] = 1052, [1053] = 1053, [1054] = 1054, - [1055] = 1050, - [1056] = 1050, + [1055] = 1055, + [1056] = 1056, [1057] = 1057, - [1058] = 1058, + [1058] = 1045, [1059] = 1059, - [1060] = 819, + [1060] = 1060, [1061] = 1061, - [1062] = 876, - [1063] = 722, - [1064] = 1064, - [1065] = 1039, - [1066] = 1066, - [1067] = 968, - [1068] = 1068, - [1069] = 853, - [1070] = 1039, - [1071] = 1049, - [1072] = 1053, - [1073] = 1039, - [1074] = 1049, - [1075] = 1050, - [1076] = 713, - [1077] = 1077, - [1078] = 1039, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1079, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1079, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1079, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, + [1062] = 857, + [1063] = 1061, + [1064] = 1053, + [1065] = 1050, + [1066] = 1054, + [1067] = 1067, + [1068] = 1060, + [1069] = 1069, + [1070] = 1055, + [1071] = 1048, + [1072] = 1056, + [1073] = 1057, + [1074] = 1059, + [1075] = 951, + [1076] = 1076, + [1077] = 971, + [1078] = 1078, + [1079] = 963, + [1080] = 857, + [1081] = 898, + [1082] = 862, + [1083] = 1076, + [1084] = 1026, + [1085] = 963, + [1086] = 1018, + [1087] = 869, + [1088] = 898, + [1089] = 1029, + [1090] = 194, + [1091] = 1020, + [1092] = 1029, + [1093] = 1038, + [1094] = 169, + [1095] = 1020, + [1096] = 188, + [1097] = 1097, + [1098] = 1031, + [1099] = 179, + [1100] = 192, + [1101] = 1042, + [1102] = 1030, [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1105, - [1108] = 1079, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 1111, - [1114] = 1114, - [1115] = 1114, - [1116] = 1116, - [1117] = 1112, - [1118] = 1118, - [1119] = 1119, - [1120] = 713, - [1121] = 749, - [1122] = 722, - [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 1127, - [1128] = 1128, - [1129] = 768, - [1130] = 750, - [1131] = 751, - [1132] = 752, - [1133] = 753, - [1134] = 754, - [1135] = 747, - [1136] = 1136, - [1137] = 1136, - [1138] = 1136, - [1139] = 1136, - [1140] = 770, - [1141] = 771, - [1142] = 755, - [1143] = 749, - [1144] = 766, - [1145] = 1145, - [1146] = 745, - [1147] = 756, + [1104] = 1039, + [1105] = 1028, + [1106] = 1032, + [1107] = 1107, + [1108] = 1016, + [1109] = 170, + [1110] = 1031, + [1111] = 194, + [1112] = 1032, + [1113] = 169, + [1114] = 170, + [1115] = 1027, + [1116] = 1014, + [1117] = 1016, + [1118] = 1028, + [1119] = 1030, + [1120] = 188, + [1121] = 1039, + [1122] = 1042, + [1123] = 179, + [1124] = 1038, + [1125] = 192, + [1126] = 1027, + [1127] = 1014, + [1128] = 1076, + [1129] = 539, + [1130] = 500, + [1131] = 898, + [1132] = 1132, + [1133] = 1054, + [1134] = 1055, + [1135] = 1056, + [1136] = 1057, + [1137] = 1137, + [1138] = 1050, + [1139] = 1139, + [1140] = 932, + [1141] = 933, + [1142] = 509, + [1143] = 1045, + [1144] = 1059, + [1145] = 1060, + [1146] = 1146, + [1147] = 925, [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 1150, - [1152] = 1149, - [1153] = 1148, - [1154] = 1149, - [1155] = 818, - [1156] = 1156, - [1157] = 1150, - [1158] = 1149, - [1159] = 1149, - [1160] = 1149, - [1161] = 1161, - [1162] = 1148, - [1163] = 1161, - [1164] = 1161, - [1165] = 1148, - [1166] = 1145, + [1149] = 1047, + [1150] = 926, + [1151] = 1048, + [1152] = 1152, + [1153] = 1061, + [1154] = 1154, + [1155] = 923, + [1156] = 928, + [1157] = 1053, + [1158] = 1044, + [1159] = 1159, + [1160] = 513, + [1161] = 898, + [1162] = 931, + [1163] = 927, + [1164] = 924, + [1165] = 898, + [1166] = 1166, [1167] = 1167, - [1168] = 684, - [1169] = 1169, + [1168] = 898, + [1169] = 508, [1170] = 1170, [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, + [1172] = 528, + [1173] = 508, + [1174] = 142, [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, + [1176] = 156, + [1177] = 161, + [1178] = 129, + [1179] = 135, + [1180] = 131, [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, + [1182] = 158, + [1183] = 157, + [1184] = 141, [1185] = 1185, - [1186] = 1186, + [1186] = 162, [1187] = 1187, - [1188] = 1186, + [1188] = 1188, [1189] = 1189, - [1190] = 1190, - [1191] = 1177, + [1190] = 1189, + [1191] = 502, [1192] = 1192, [1193] = 1193, [1194] = 1194, - [1195] = 1192, - [1196] = 1183, + [1195] = 1195, + [1196] = 1196, [1197] = 1197, - [1198] = 1198, - [1199] = 1199, + [1198] = 1171, + [1199] = 1167, [1200] = 1200, - [1201] = 1167, - [1202] = 1202, - [1203] = 1173, - [1204] = 1200, - [1205] = 1205, - [1206] = 1194, - [1207] = 1197, - [1208] = 1208, - [1209] = 1198, - [1210] = 1200, - [1211] = 1194, - [1212] = 1208, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1170, - [1217] = 1181, + [1201] = 1195, + [1202] = 1196, + [1203] = 1192, + [1204] = 1204, + [1205] = 1053, + [1206] = 1054, + [1207] = 1055, + [1208] = 1059, + [1209] = 1060, + [1210] = 1045, + [1211] = 1048, + [1212] = 1044, + [1213] = 1050, + [1214] = 1047, + [1215] = 1057, + [1216] = 1061, + [1217] = 1056, [1218] = 1218, - [1219] = 1214, - [1220] = 1220, - [1221] = 1194, - [1222] = 1222, - [1223] = 1169, - [1224] = 1171, - [1225] = 1178, - [1226] = 1182, - [1227] = 1184, - [1228] = 1187, - [1229] = 1189, - [1230] = 1202, - [1231] = 1205, + [1219] = 1219, + [1220] = 377, + [1221] = 1221, + [1222] = 1218, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1218, + [1231] = 1218, [1232] = 1232, - [1233] = 1222, - [1234] = 1218, - [1235] = 1235, - [1236] = 1176, - [1237] = 1237, - [1238] = 1220, + [1233] = 1053, + [1234] = 1054, + [1235] = 1055, + [1236] = 1056, + [1237] = 1057, + [1238] = 1238, [1239] = 1239, - [1240] = 1012, - [1241] = 1241, - [1242] = 1242, - [1243] = 684, - [1244] = 1004, - [1245] = 1190, - [1246] = 1246, - [1247] = 1000, - [1248] = 1237, - [1249] = 999, - [1250] = 1250, + [1240] = 1048, + [1241] = 1044, + [1242] = 1050, + [1243] = 1047, + [1244] = 1244, + [1245] = 1238, + [1246] = 1061, + [1247] = 1060, + [1248] = 1059, + [1249] = 1249, + [1250] = 1045, [1251] = 1251, - [1252] = 1246, - [1253] = 1253, - [1254] = 1237, - [1255] = 1246, - [1256] = 1213, - [1257] = 1253, - [1258] = 1237, - [1259] = 1246, - [1260] = 1253, - [1261] = 1261, - [1262] = 1261, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1266, - [1267] = 1261, - [1268] = 1268, - [1269] = 1261, - [1270] = 1270, + [1252] = 1252, + [1253] = 1067, + [1254] = 1078, + [1255] = 1255, + [1256] = 1256, + [1257] = 1053, + [1258] = 1054, + [1259] = 1055, + [1260] = 1056, + [1261] = 1050, + [1262] = 1057, + [1263] = 1045, + [1264] = 1059, + [1265] = 1060, + [1266] = 1047, + [1267] = 1256, + [1268] = 1061, + [1269] = 1269, + [1270] = 1251, [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, + [1272] = 1048, + [1273] = 1044, + [1274] = 1048, [1275] = 1275, - [1276] = 1274, - [1277] = 1274, - [1278] = 1274, - [1279] = 1271, - [1280] = 1271, - [1281] = 1281, - [1282] = 1271, - [1283] = 1283, - [1284] = 1283, - [1285] = 1285, - [1286] = 1283, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, + [1276] = 1276, + [1277] = 1277, + [1278] = 1278, + [1279] = 1279, + [1280] = 1280, + [1281] = 1053, + [1282] = 1054, + [1283] = 1055, + [1284] = 1056, + [1285] = 1057, + [1286] = 1045, + [1287] = 1059, + [1288] = 1060, + [1289] = 1061, [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, + [1291] = 1204, + [1292] = 1048, + [1293] = 1044, + [1294] = 1050, [1295] = 1295, - [1296] = 1263, + [1296] = 1296, [1297] = 1297, [1298] = 1298, [1299] = 1299, [1300] = 1300, - [1301] = 1301, - [1302] = 1302, + [1301] = 1275, + [1302] = 1278, [1303] = 1303, - [1304] = 1304, + [1304] = 1290, [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1309, - [1310] = 1306, - [1311] = 1311, - [1312] = 1307, - [1313] = 1313, - [1314] = 1314, - [1315] = 1315, - [1316] = 1306, - [1317] = 1317, - [1318] = 1307, - [1319] = 1306, - [1320] = 1307, - [1321] = 1321, - [1322] = 1307, - [1323] = 1307, - [1324] = 1324, - [1325] = 1325, - [1326] = 1326, - [1327] = 1327, - [1328] = 1328, - [1329] = 1329, + [1306] = 1044, + [1307] = 1050, + [1308] = 971, + [1309] = 1047, + [1310] = 1275, + [1311] = 1278, + [1312] = 1312, + [1313] = 1290, + [1314] = 1312, + [1315] = 1107, + [1316] = 1053, + [1317] = 1278, + [1318] = 1054, + [1319] = 1055, + [1320] = 1290, + [1321] = 1047, + [1322] = 1056, + [1323] = 1290, + [1324] = 1057, + [1325] = 1045, + [1326] = 942, + [1327] = 1290, + [1328] = 1059, + [1329] = 1060, [1330] = 1330, - [1331] = 1331, - [1332] = 1332, - [1333] = 1273, - [1334] = 1334, - [1335] = 1335, + [1331] = 1061, + [1332] = 1097, + [1333] = 1333, + [1334] = 1132, + [1335] = 1148, [1336] = 1336, [1337] = 1337, - [1338] = 1338, - [1339] = 1281, - [1340] = 1340, - [1341] = 1341, - [1342] = 1342, + [1338] = 1290, + [1339] = 1290, + [1340] = 1312, + [1341] = 1290, + [1342] = 1103, [1343] = 1343, [1344] = 1344, - [1345] = 1345, + [1345] = 1336, [1346] = 1346, - [1347] = 1347, - [1348] = 1348, + [1347] = 1275, + [1348] = 1057, [1349] = 1349, [1350] = 1350, - [1351] = 1275, + [1351] = 1351, [1352] = 1352, [1353] = 1353, - [1354] = 1349, - [1355] = 1349, - [1356] = 1356, + [1354] = 1354, + [1355] = 1047, + [1356] = 1353, [1357] = 1357, - [1358] = 1349, - [1359] = 1359, - [1360] = 1360, + [1358] = 1353, + [1359] = 1353, + [1360] = 1353, [1361] = 1361, - [1362] = 1362, + [1362] = 1353, [1363] = 1363, [1364] = 1364, [1365] = 1365, [1366] = 1366, [1367] = 1367, - [1368] = 1302, - [1369] = 1299, - [1370] = 1301, - [1371] = 1300, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, [1372] = 1372, - [1373] = 1365, - [1374] = 1365, - [1375] = 1375, - [1376] = 1365, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1382, + [1373] = 1373, + [1374] = 1053, + [1375] = 1054, + [1376] = 1055, + [1377] = 1056, + [1378] = 1045, + [1379] = 1059, + [1380] = 1060, + [1381] = 1061, + [1382] = 1050, [1383] = 1383, - [1384] = 1384, + [1384] = 1353, [1385] = 1385, [1386] = 1386, - [1387] = 1379, - [1388] = 1388, - [1389] = 1389, - [1390] = 1379, - [1391] = 1391, + [1387] = 1387, + [1388] = 1371, + [1389] = 1044, + [1390] = 1353, + [1391] = 1048, [1392] = 1392, - [1393] = 1381, - [1394] = 1378, + [1393] = 1393, + [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1397, - [1398] = 1379, + [1397] = 1395, + [1398] = 1398, [1399] = 1399, - [1400] = 1381, - [1401] = 1381, - [1402] = 1378, - [1403] = 1403, - [1404] = 1378, - [1405] = 1405, - [1406] = 1406, + [1400] = 1400, + [1401] = 1396, + [1402] = 1402, + [1403] = 1400, + [1404] = 1076, + [1405] = 942, + [1406] = 971, [1407] = 1407, - [1408] = 1408, + [1408] = 944, [1409] = 1409, [1410] = 1410, - [1411] = 1407, - [1412] = 1408, - [1413] = 1413, + [1411] = 1411, + [1412] = 944, + [1413] = 944, [1414] = 1414, [1415] = 1415, - [1416] = 1408, - [1417] = 1417, + [1416] = 1416, + [1417] = 994, [1418] = 1418, [1419] = 1419, - [1420] = 1420, - [1421] = 1421, - [1422] = 1406, - [1423] = 1423, - [1424] = 1424, - [1425] = 1407, - [1426] = 1426, - [1427] = 1427, - [1428] = 1407, - [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, - [1433] = 1406, - [1434] = 1406, - [1435] = 1408, - [1436] = 1436, + [1420] = 1076, + [1421] = 980, + [1422] = 539, + [1423] = 970, + [1424] = 1416, + [1425] = 977, + [1426] = 1003, + [1427] = 1002, + [1428] = 1416, + [1429] = 972, + [1430] = 968, + [1431] = 973, + [1432] = 976, + [1433] = 978, + [1434] = 1416, + [1435] = 502, + [1436] = 966, [1437] = 1437, [1438] = 1438, - [1439] = 1439, - [1440] = 1440, + [1439] = 1419, + [1440] = 1438, [1441] = 1441, [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1445, - [1447] = 1447, - [1448] = 1440, - [1449] = 1449, - [1450] = 1450, + [1443] = 1442, + [1444] = 1438, + [1445] = 1441, + [1446] = 1418, + [1447] = 1438, + [1448] = 1437, + [1449] = 1438, + [1450] = 1441, [1451] = 1451, - [1452] = 1452, - [1453] = 1445, - [1454] = 1454, - [1455] = 1440, + [1452] = 1442, + [1453] = 1067, + [1454] = 1437, + [1455] = 1442, [1456] = 1456, - [1457] = 1445, - [1458] = 1440, - [1459] = 1445, - [1460] = 1440, - [1461] = 1461, - [1462] = 1440, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, + [1461] = 468, + [1462] = 1462, [1463] = 1463, [1464] = 1464, [1465] = 1465, [1466] = 1466, [1467] = 1467, - [1468] = 1445, + [1468] = 1468, [1469] = 1469, [1470] = 1470, [1471] = 1471, - [1472] = 1472, + [1472] = 913, [1473] = 1473, [1474] = 1474, [1475] = 1475, [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, + [1477] = 1457, + [1478] = 1463, + [1479] = 1458, [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, + [1481] = 1460, + [1482] = 1464, + [1483] = 1465, + [1484] = 1466, + [1485] = 1467, + [1486] = 1468, + [1487] = 1469, + [1488] = 1474, [1489] = 1489, [1490] = 1490, [1491] = 1491, @@ -4756,273 +4785,273 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1498] = 1498, [1499] = 1499, [1500] = 1500, - [1501] = 1499, + [1501] = 1501, [1502] = 1502, - [1503] = 1499, - [1504] = 1502, - [1505] = 1502, - [1506] = 1506, + [1503] = 1503, + [1504] = 1456, + [1505] = 1505, + [1506] = 1490, [1507] = 1507, - [1508] = 1508, - [1509] = 1502, - [1510] = 1499, - [1511] = 1511, - [1512] = 1512, - [1513] = 1513, - [1514] = 1500, + [1508] = 1456, + [1509] = 1490, + [1510] = 1456, + [1511] = 1459, + [1512] = 913, + [1513] = 1497, + [1514] = 1514, [1515] = 1515, - [1516] = 1516, + [1516] = 1498, [1517] = 1517, [1518] = 1518, - [1519] = 1508, - [1520] = 1500, - [1521] = 1521, - [1522] = 1508, - [1523] = 1508, + [1519] = 1499, + [1520] = 1219, + [1521] = 1494, + [1522] = 1522, + [1523] = 1229, [1524] = 1524, - [1525] = 1500, + [1525] = 1525, [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, + [1527] = 1480, + [1528] = 1496, + [1529] = 1503, + [1530] = 1522, + [1531] = 1502, + [1532] = 1526, [1533] = 1533, - [1534] = 1534, - [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1537, - [1541] = 1528, - [1542] = 1539, - [1543] = 1533, - [1544] = 1539, - [1545] = 1545, - [1546] = 1539, - [1547] = 1547, - [1548] = 1539, - [1549] = 1549, - [1550] = 1550, - [1551] = 1551, + [1534] = 1533, + [1535] = 1526, + [1536] = 1500, + [1537] = 1522, + [1538] = 1501, + [1539] = 1225, + [1540] = 1522, + [1541] = 1526, + [1542] = 1542, + [1543] = 508, + [1544] = 1544, + [1545] = 1495, + [1546] = 1226, + [1547] = 1514, + [1548] = 1476, + [1549] = 1475, + [1550] = 1493, + [1551] = 1514, [1552] = 1552, - [1553] = 1527, + [1553] = 1553, [1554] = 1554, [1555] = 1555, - [1556] = 1528, - [1557] = 1557, - [1558] = 1537, - [1559] = 1528, - [1560] = 1528, + [1556] = 1553, + [1557] = 1553, + [1558] = 1558, + [1559] = 1553, + [1560] = 1560, [1561] = 1561, - [1562] = 1528, + [1562] = 1562, [1563] = 1563, - [1564] = 1527, + [1564] = 1564, [1565] = 1565, [1566] = 1566, - [1567] = 1528, - [1568] = 1533, - [1569] = 1554, - [1570] = 1554, - [1571] = 1571, - [1572] = 1572, + [1567] = 1561, + [1568] = 1565, + [1569] = 1565, + [1570] = 1561, + [1571] = 1565, + [1572] = 1561, [1573] = 1573, [1574] = 1574, [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 1578, - [1579] = 1579, + [1578] = 1575, + [1579] = 1575, [1580] = 1580, [1581] = 1581, [1582] = 1582, - [1583] = 1583, + [1583] = 1555, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, [1589] = 1589, - [1590] = 1583, + [1590] = 1590, [1591] = 1591, [1592] = 1592, [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1581, - [1597] = 1586, - [1598] = 1598, + [1596] = 1594, + [1597] = 1597, + [1598] = 1594, [1599] = 1599, - [1600] = 1571, - [1601] = 1601, + [1600] = 1594, + [1601] = 1595, [1602] = 1602, - [1603] = 1603, - [1604] = 1582, - [1605] = 1605, + [1603] = 1595, + [1604] = 1604, + [1605] = 1595, [1606] = 1606, [1607] = 1607, - [1608] = 1608, + [1608] = 1595, [1609] = 1609, [1610] = 1610, [1611] = 1611, [1612] = 1612, - [1613] = 1601, - [1614] = 1578, - [1615] = 1602, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, [1616] = 1616, - [1617] = 1572, - [1618] = 1571, - [1619] = 1582, - [1620] = 1586, - [1621] = 1592, - [1622] = 1606, - [1623] = 1592, - [1624] = 1593, - [1625] = 1594, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1622, + [1623] = 1623, + [1624] = 1624, + [1625] = 1625, [1626] = 1626, - [1627] = 1601, + [1627] = 1627, [1628] = 1628, - [1629] = 1571, - [1630] = 1601, + [1629] = 1625, + [1630] = 1630, [1631] = 1631, - [1632] = 1593, - [1633] = 1606, - [1634] = 1606, - [1635] = 1586, + [1632] = 1632, + [1633] = 1573, + [1634] = 1634, + [1635] = 1635, [1636] = 1636, - [1637] = 1592, - [1638] = 1593, - [1639] = 1594, - [1640] = 1571, - [1641] = 1601, - [1642] = 1602, - [1643] = 1606, - [1644] = 1586, - [1645] = 1592, - [1646] = 1593, - [1647] = 1594, - [1648] = 1571, - [1649] = 1601, - [1650] = 1602, - [1651] = 1606, + [1637] = 1637, + [1638] = 1638, + [1639] = 1639, + [1640] = 1625, + [1641] = 1562, + [1642] = 1642, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1625, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1566, + [1651] = 1651, [1652] = 1652, - [1653] = 1594, - [1654] = 1573, - [1655] = 1578, - [1656] = 1656, - [1657] = 1583, + [1653] = 1653, + [1654] = 1654, + [1655] = 1591, + [1656] = 1592, + [1657] = 1593, [1658] = 1658, - [1659] = 1592, - [1660] = 1593, + [1659] = 1659, + [1660] = 1653, [1661] = 1661, - [1662] = 1581, - [1663] = 1602, - [1664] = 1594, - [1665] = 1652, - [1666] = 1666, + [1662] = 1662, + [1663] = 1663, + [1664] = 1653, + [1665] = 1590, + [1666] = 1653, [1667] = 1667, [1668] = 1668, - [1669] = 1658, + [1669] = 1669, [1670] = 1670, [1671] = 1671, [1672] = 1672, - [1673] = 1586, + [1673] = 1673, [1674] = 1674, - [1675] = 1417, - [1676] = 1676, - [1677] = 1677, - [1678] = 1678, - [1679] = 1652, - [1680] = 1680, - [1681] = 1573, + [1675] = 1672, + [1676] = 1672, + [1677] = 1673, + [1678] = 1673, + [1679] = 1679, + [1680] = 1673, + [1681] = 1681, [1682] = 1682, [1683] = 1683, - [1684] = 1578, + [1684] = 1684, [1685] = 1685, - [1686] = 1602, - [1687] = 1687, + [1686] = 1686, + [1687] = 1672, [1688] = 1688, [1689] = 1689, - [1690] = 1690, - [1691] = 1691, + [1690] = 1682, + [1691] = 1682, [1692] = 1692, - [1693] = 1693, + [1693] = 1682, [1694] = 1694, [1695] = 1695, [1696] = 1696, [1697] = 1697, [1698] = 1698, - [1699] = 1692, - [1700] = 1692, + [1699] = 1699, + [1700] = 1700, [1701] = 1701, - [1702] = 1702, - [1703] = 1690, - [1704] = 1687, - [1705] = 1701, - [1706] = 1690, - [1707] = 1692, - [1708] = 1692, - [1709] = 1690, - [1710] = 1701, - [1711] = 1690, - [1712] = 1692, - [1713] = 1713, + [1702] = 1698, + [1703] = 1703, + [1704] = 1704, + [1705] = 1705, + [1706] = 1706, + [1707] = 1700, + [1708] = 1708, + [1709] = 1709, + [1710] = 1710, + [1711] = 1711, + [1712] = 1712, + [1713] = 1705, [1714] = 1714, - [1715] = 1715, - [1716] = 1716, - [1717] = 1690, - [1718] = 1692, - [1719] = 1694, - [1720] = 1689, - [1721] = 1693, - [1722] = 1702, - [1723] = 1690, - [1724] = 1689, - [1725] = 1697, - [1726] = 1702, + [1715] = 1700, + [1716] = 1698, + [1717] = 1705, + [1718] = 1718, + [1719] = 1698, + [1720] = 1720, + [1721] = 1721, + [1722] = 1722, + [1723] = 1700, + [1724] = 1705, + [1725] = 1725, + [1726] = 1726, [1727] = 1727, [1728] = 1728, [1729] = 1729, [1730] = 1730, - [1731] = 1731, - [1732] = 1701, + [1731] = 1727, + [1732] = 1728, [1733] = 1733, - [1734] = 1734, - [1735] = 1716, - [1736] = 1702, - [1737] = 1737, - [1738] = 1737, - [1739] = 1687, + [1734] = 1728, + [1735] = 1735, + [1736] = 1736, + [1737] = 1728, + [1738] = 1738, + [1739] = 1739, [1740] = 1740, - [1741] = 1687, - [1742] = 1689, + [1741] = 1727, + [1742] = 1742, [1743] = 1743, - [1744] = 1694, - [1745] = 1689, - [1746] = 1693, - [1747] = 1702, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 1747, [1748] = 1748, - [1749] = 1698, - [1750] = 1697, - [1751] = 1734, - [1752] = 1716, - [1753] = 1737, - [1754] = 1693, - [1755] = 1755, + [1749] = 1727, + [1750] = 1750, + [1751] = 1751, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1727, [1756] = 1756, - [1757] = 1698, - [1758] = 1697, - [1759] = 1698, - [1760] = 1716, + [1757] = 1728, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, [1761] = 1761, - [1762] = 1737, - [1763] = 1737, + [1762] = 1762, + [1763] = 1763, [1764] = 1764, - [1765] = 1687, - [1766] = 1697, - [1767] = 1701, + [1765] = 1765, + [1766] = 1766, + [1767] = 1767, [1768] = 1768, [1769] = 1769, [1770] = 1770, @@ -5039,245 +5068,501 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1781] = 1781, [1782] = 1782, [1783] = 1783, - [1784] = 1783, + [1784] = 1784, [1785] = 1785, [1786] = 1786, [1787] = 1787, - [1788] = 1777, + [1788] = 1788, [1789] = 1789, [1790] = 1790, [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1786, - [1795] = 1795, + [1792] = 1787, + [1793] = 1791, + [1794] = 1789, + [1795] = 1790, [1796] = 1796, - [1797] = 1797, - [1798] = 1780, + [1797] = 1791, + [1798] = 1790, [1799] = 1799, - [1800] = 1000, - [1801] = 1791, - [1802] = 1012, - [1803] = 1783, + [1800] = 1787, + [1801] = 1790, + [1802] = 1791, + [1803] = 1789, [1804] = 1804, - [1805] = 1805, - [1806] = 1787, + [1805] = 1787, + [1806] = 1806, [1807] = 1807, - [1808] = 1786, - [1809] = 1780, + [1808] = 1808, + [1809] = 1789, [1810] = 1810, [1811] = 1811, - [1812] = 1786, + [1812] = 1812, [1813] = 1813, - [1814] = 1807, + [1814] = 1814, [1815] = 1815, - [1816] = 1790, + [1816] = 1815, [1817] = 1817, - [1818] = 1777, - [1819] = 1783, - [1820] = 1787, - [1821] = 1821, - [1822] = 1786, - [1823] = 1796, + [1818] = 1818, + [1819] = 1819, + [1820] = 1820, + [1821] = 1814, + [1822] = 1822, + [1823] = 1823, [1824] = 1824, [1825] = 1825, [1826] = 1826, - [1827] = 642, - [1828] = 1828, - [1829] = 1829, - [1830] = 1783, - [1831] = 1779, - [1832] = 1790, + [1827] = 1819, + [1828] = 1814, + [1829] = 1819, + [1830] = 1819, + [1831] = 1831, + [1832] = 1832, [1833] = 1833, [1834] = 1834, - [1835] = 1835, + [1835] = 1814, [1836] = 1836, [1837] = 1837, - [1838] = 1815, - [1839] = 1790, + [1838] = 1838, + [1839] = 1819, [1840] = 1840, - [1841] = 1841, + [1841] = 1838, [1842] = 1842, [1843] = 1843, - [1844] = 1786, + [1844] = 1838, [1845] = 1845, - [1846] = 1797, - [1847] = 1780, - [1848] = 1848, + [1846] = 1846, + [1847] = 1833, + [1848] = 1819, [1849] = 1849, - [1850] = 1850, - [1851] = 1791, - [1852] = 1852, - [1853] = 1853, - [1854] = 1807, - [1855] = 1855, - [1856] = 1789, + [1850] = 1815, + [1851] = 1814, + [1852] = 1846, + [1853] = 1833, + [1854] = 1846, + [1855] = 1819, + [1856] = 1856, [1857] = 1857, [1858] = 1858, [1859] = 1859, [1860] = 1860, - [1861] = 1817, + [1861] = 1861, [1862] = 1862, - [1863] = 1863, + [1863] = 1718, [1864] = 1864, - [1865] = 1797, + [1865] = 1857, [1866] = 1866, - [1867] = 1799, - [1868] = 638, - [1869] = 1869, + [1867] = 1859, + [1868] = 1868, + [1869] = 1857, [1870] = 1870, - [1871] = 1795, + [1871] = 1871, [1872] = 1872, - [1873] = 1863, - [1874] = 1815, - [1875] = 1789, - [1876] = 1813, - [1877] = 1824, - [1878] = 1780, - [1879] = 1817, - [1880] = 1880, - [1881] = 1787, - [1882] = 1783, - [1883] = 1834, - [1884] = 1884, + [1873] = 1873, + [1874] = 1874, + [1875] = 1858, + [1876] = 1872, + [1877] = 1877, + [1878] = 1878, + [1879] = 1873, + [1880] = 1871, + [1881] = 1881, + [1882] = 1882, + [1883] = 1871, + [1884] = 1881, [1885] = 1885, [1886] = 1886, - [1887] = 1779, - [1888] = 1790, - [1889] = 1889, - [1890] = 1890, + [1887] = 1859, + [1888] = 1888, + [1889] = 1882, + [1890] = 1858, [1891] = 1891, - [1892] = 1892, - [1893] = 1813, - [1894] = 1894, - [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 1787, - [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1848, - [1903] = 1903, + [1892] = 1857, + [1893] = 1893, + [1894] = 1872, + [1895] = 1873, + [1896] = 1858, + [1897] = 1871, + [1898] = 1881, + [1899] = 1882, + [1900] = 1859, + [1901] = 1878, + [1902] = 1902, + [1903] = 528, [1904] = 1904, [1905] = 1905, - [1906] = 1858, - [1907] = 1804, - [1908] = 1795, - [1909] = 1848, - [1910] = 1848, - [1911] = 1834, + [1906] = 1906, + [1907] = 1907, + [1908] = 1908, + [1909] = 1909, + [1910] = 1908, + [1911] = 1881, [1912] = 1912, - [1913] = 1858, - [1914] = 1824, - [1915] = 1825, - [1916] = 1825, - [1917] = 1894, - [1918] = 1807, - [1919] = 1919, + [1913] = 1882, + [1914] = 1914, + [1915] = 1915, + [1916] = 1916, + [1917] = 1917, + [1918] = 1918, + [1919] = 1871, [1920] = 1920, - [1921] = 1886, - [1922] = 1922, - [1923] = 1833, - [1924] = 1894, + [1921] = 1881, + [1922] = 1882, + [1923] = 1923, + [1924] = 1924, [1925] = 1925, [1926] = 1926, [1927] = 1927, - [1928] = 1789, - [1929] = 1886, - [1930] = 1930, + [1928] = 1928, + [1929] = 1861, + [1930] = 1872, [1931] = 1931, - [1932] = 1932, - [1933] = 1863, + [1932] = 1904, + [1933] = 1933, [1934] = 1934, - [1935] = 1872, - [1936] = 1919, - [1937] = 1815, - [1938] = 1922, - [1939] = 1795, - [1940] = 1872, - [1941] = 1863, - [1942] = 999, + [1935] = 1923, + [1936] = 1936, + [1937] = 1937, + [1938] = 1938, + [1939] = 1908, + [1940] = 1859, + [1941] = 1861, + [1942] = 1857, [1943] = 1943, - [1944] = 1930, - [1945] = 1824, - [1946] = 1825, + [1944] = 1944, + [1945] = 1945, + [1946] = 1873, [1947] = 1947, - [1948] = 1783, + [1948] = 1948, [1949] = 1949, - [1950] = 1858, - [1951] = 1833, - [1952] = 1952, + [1950] = 1904, + [1951] = 1951, + [1952] = 1861, [1953] = 1953, [1954] = 1954, - [1955] = 1786, - [1956] = 1956, + [1955] = 1872, + [1956] = 1873, [1957] = 1957, - [1958] = 1797, - [1959] = 1930, - [1960] = 1901, + [1958] = 1858, + [1959] = 1906, + [1960] = 1960, [1961] = 1961, - [1962] = 1813, - [1963] = 1963, + [1962] = 528, + [1963] = 1949, [1964] = 1964, [1965] = 1965, - [1966] = 1824, + [1966] = 1966, [1967] = 1967, [1968] = 1968, [1969] = 1969, - [1970] = 1824, - [1971] = 1824, - [1972] = 1947, - [1973] = 1973, + [1970] = 1970, + [1971] = 543, + [1972] = 1972, + [1973] = 1972, [1974] = 1974, [1975] = 1975, - [1976] = 1919, - [1977] = 1778, + [1976] = 1976, + [1977] = 1977, [1978] = 1978, - [1979] = 1834, - [1980] = 1804, + [1979] = 1968, + [1980] = 1972, [1981] = 1981, - [1982] = 1982, - [1983] = 1790, - [1984] = 1791, + [1982] = 1972, + [1983] = 1983, + [1984] = 1984, [1985] = 1985, [1986] = 1986, - [1987] = 1894, - [1988] = 1842, - [1989] = 1817, - [1990] = 1930, - [1991] = 1991, - [1992] = 1967, + [1987] = 1987, + [1988] = 1975, + [1989] = 1989, + [1990] = 1969, + [1991] = 1978, + [1992] = 1968, [1993] = 1993, - [1994] = 1789, - [1995] = 1815, - [1996] = 1833, - [1997] = 1834, - [1998] = 1834, + [1994] = 1994, + [1995] = 1969, + [1996] = 1968, + [1997] = 1997, + [1998] = 1993, [1999] = 1999, - [2000] = 1978, + [2000] = 2000, [2001] = 2001, - [2002] = 1884, - [2003] = 1842, + [2002] = 543, + [2003] = 1968, [2004] = 2004, - [2005] = 1947, - [2006] = 1787, - [2007] = 1789, - [2008] = 2008, - [2009] = 1919, - [2010] = 2010, - [2011] = 1842, - [2012] = 2012, - [2013] = 1004, - [2014] = 2008, - [2015] = 2015, - [2016] = 1978, + [2005] = 1987, + [2006] = 2006, + [2007] = 2007, + [2008] = 1969, + [2009] = 2009, + [2010] = 1968, + [2011] = 2011, + [2012] = 1993, + [2013] = 2000, + [2014] = 2000, + [2015] = 2000, + [2016] = 1987, [2017] = 2017, - [2018] = 2008, - [2019] = 1978, - [2020] = 2020, - [2021] = 1787, - [2022] = 1978, + [2018] = 1969, + [2019] = 1987, + [2020] = 534, + [2021] = 1968, + [2022] = 2022, + [2023] = 2023, + [2024] = 1972, + [2025] = 2025, + [2026] = 1975, + [2027] = 1993, + [2028] = 2028, + [2029] = 534, + [2030] = 2030, + [2031] = 2031, + [2032] = 1972, + [2033] = 1975, + [2034] = 2000, + [2035] = 1972, + [2036] = 1975, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, + [2040] = 564, + [2041] = 2041, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, + [2049] = 2049, + [2050] = 2041, + [2051] = 2051, + [2052] = 2052, + [2053] = 2053, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2058, + [2059] = 2059, + [2060] = 2060, + [2061] = 2061, + [2062] = 564, + [2063] = 2063, + [2064] = 2045, + [2065] = 2065, + [2066] = 2051, + [2067] = 1219, + [2068] = 2052, + [2069] = 2053, + [2070] = 2045, + [2071] = 2071, + [2072] = 2072, + [2073] = 2053, + [2074] = 2052, + [2075] = 2075, + [2076] = 2076, + [2077] = 2077, + [2078] = 2046, + [2079] = 2053, + [2080] = 2053, + [2081] = 2081, + [2082] = 2057, + [2083] = 2083, + [2084] = 1226, + [2085] = 2085, + [2086] = 2086, + [2087] = 2087, + [2088] = 2088, + [2089] = 2045, + [2090] = 2055, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, + [2094] = 2052, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, + [2098] = 2056, + [2099] = 2057, + [2100] = 2100, + [2101] = 2063, + [2102] = 2054, + [2103] = 2103, + [2104] = 2104, + [2105] = 2105, + [2106] = 2097, + [2107] = 1225, + [2108] = 2053, + [2109] = 2051, + [2110] = 2110, + [2111] = 2057, + [2112] = 2112, + [2113] = 2113, + [2114] = 570, + [2115] = 2104, + [2116] = 2056, + [2117] = 2052, + [2118] = 2092, + [2119] = 2119, + [2120] = 2092, + [2121] = 2121, + [2122] = 2122, + [2123] = 2048, + [2124] = 2124, + [2125] = 2057, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, + [2129] = 2129, + [2130] = 869, + [2131] = 2046, + [2132] = 2046, + [2133] = 2063, + [2134] = 564, + [2135] = 2056, + [2136] = 2136, + [2137] = 2112, + [2138] = 2103, + [2139] = 1229, + [2140] = 2140, + [2141] = 2086, + [2142] = 2091, + [2143] = 2140, + [2144] = 2144, + [2145] = 2097, + [2146] = 2146, + [2147] = 2044, + [2148] = 2148, + [2149] = 2149, + [2150] = 2150, + [2151] = 2045, + [2152] = 2052, + [2153] = 2044, + [2154] = 2044, + [2155] = 862, + [2156] = 2045, + [2157] = 2056, + [2158] = 2158, + [2159] = 2159, + [2160] = 2043, + [2161] = 2161, + [2162] = 2044, + [2163] = 2056, + [2164] = 2164, + [2165] = 2165, + [2166] = 2076, + [2167] = 2077, + [2168] = 2086, + [2169] = 2169, + [2170] = 2170, + [2171] = 2041, + [2172] = 2172, + [2173] = 2173, + [2174] = 2041, + [2175] = 2144, + [2176] = 2039, + [2177] = 2045, + [2178] = 2052, + [2179] = 2053, + [2180] = 2140, + [2181] = 2181, + [2182] = 2056, + [2183] = 2091, + [2184] = 2104, + [2185] = 2055, + [2186] = 2052, + [2187] = 2159, + [2188] = 2188, + [2189] = 2189, + [2190] = 2056, + [2191] = 2057, + [2192] = 2041, + [2193] = 2193, + [2194] = 2043, + [2195] = 2076, + [2196] = 2077, + [2197] = 2044, + [2198] = 2198, + [2199] = 2199, + [2200] = 2048, + [2201] = 2201, + [2202] = 2045, + [2203] = 2041, + [2204] = 2204, + [2205] = 2205, + [2206] = 2140, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, + [2211] = 2144, + [2212] = 2212, + [2213] = 2213, + [2214] = 2048, + [2215] = 2039, + [2216] = 2076, + [2217] = 2043, + [2218] = 2199, + [2219] = 2219, + [2220] = 564, + [2221] = 2076, + [2222] = 2222, + [2223] = 2210, + [2224] = 2224, + [2225] = 2076, + [2226] = 2148, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2052, + [2231] = 2231, + [2232] = 2053, + [2233] = 2233, + [2234] = 2144, + [2235] = 2039, + [2236] = 2044, + [2237] = 563, + [2238] = 2045, + [2239] = 2239, + [2240] = 2240, + [2241] = 2092, + [2242] = 2242, + [2243] = 2243, + [2244] = 2128, + [2245] = 2063, + [2246] = 2041, + [2247] = 2061, + [2248] = 2097, + [2249] = 2077, + [2250] = 2250, + [2251] = 2251, + [2252] = 2052, + [2253] = 569, + [2254] = 2254, + [2255] = 2076, + [2256] = 2128, + [2257] = 2053, + [2258] = 2258, + [2259] = 2159, + [2260] = 2260, + [2261] = 2261, + [2262] = 569, + [2263] = 2263, + [2264] = 2264, + [2265] = 2128, + [2266] = 2266, + [2267] = 2267, + [2268] = 2056, + [2269] = 2057, + [2270] = 2054, + [2271] = 2271, + [2272] = 2272, + [2273] = 2273, + [2274] = 2274, + [2275] = 2275, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, }; static TSCharacterRange sym_number_literal_character_set_13[] = { @@ -5314,7 +5599,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, - {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, + {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, @@ -5324,8 +5609,8 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, - {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, - {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, + {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, + {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, @@ -5338,38 +5623,40 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, - {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, - {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, - {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, - {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, - {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, - {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, - {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, - {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, - {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, - {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, - {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, - {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, - {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, - {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, - {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, - {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, - {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, - {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, - {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, - {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, - {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, - {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, - {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, - {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, - {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, - {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, - {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, - {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, - {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, - {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, - {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, + {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, + {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, + {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, + {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, + {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, + {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, + {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, + {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, + {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, + {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, + {0x113d3, 0x113d3}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, + {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, + {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, + {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, + {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, + {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, + {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, + {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, + {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, + {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, + {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, + {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, + {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, + {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, + {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, + {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, + {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, + {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, + {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, + {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, + {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, + {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; static TSCharacterRange sym_identifier_character_set_2[] = { @@ -5379,7 +5666,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, - {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, + {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, @@ -5407,7 +5694,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, - {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, + {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, @@ -5418,7 +5705,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, - {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, + {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, @@ -5431,39 +5718,42 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, - {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, - {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, - {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, - {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, - {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, - {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, - {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, - {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, - {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, - {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, - {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, - {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, - {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, - {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, + {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, + {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, + {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, + {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, + {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, + {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, + {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, + {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, + {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, + {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, + {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, + {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, + {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, + {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, + {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, + {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, - {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, - {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, - {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, - {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, - {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, - {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, - {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, - {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, - {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, - {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, - {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, - {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, - {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, - {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, - {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, - {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, - {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, + {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, + {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, + {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, + {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, + {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, + {0x16100, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, + {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, + {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, + {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, + {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, + {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, + {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, + {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, + {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, + {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, + {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, + {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, @@ -5478,144 +5768,144 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(121); + if (eof) ADVANCE(124); ADVANCE_MAP( - '!', 188, - '"', 287, - '#', 75, - '%', 205, - '&', 214, - '\'', 278, - '(', 125, - ')', 128, - '*', 201, - '+', 196, - ',', 127, - '-', 191, - '.', 254, - '/', 203, - '0', 260, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 302, - 'U', 304, - '[', 234, + '!', 192, + '"', 291, + '#', 78, + '%', 209, + '&', 218, + '\'', 282, + '(', 128, + ')', 131, + '*', 205, + '+', 200, + ',', 130, + '-', 195, + '.', 258, + '/', 207, + '0', 264, + ':', 242, + ';', 231, + '<', 225, + '=', 241, + '>', 221, + '?', 243, + 'L', 306, + 'U', 308, + '[', 238, '\\', 2, - ']', 235, - '^', 211, - 'u', 306, - '{', 231, - '|', 208, - '}', 232, - '~', 189, + ']', 239, + '^', 215, + 'u', 310, + '{', 235, + '|', 212, + '}', 236, + '~', 193, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(119); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + lookahead == ' ') SKIP(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 1: - if (lookahead == '\n') SKIP(43); + if (lookahead == '\n') SKIP(46); END_STATE(); case 2: - if (lookahead == '\n') SKIP(43); + if (lookahead == '\n') SKIP(46); if (lookahead == '\r') SKIP(1); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 3: - if (lookahead == '\n') SKIP(46); + if (lookahead == '\n') SKIP(49); END_STATE(); case 4: - if (lookahead == '\n') SKIP(46); + if (lookahead == '\n') SKIP(49); if (lookahead == '\r') SKIP(3); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 5: - if (lookahead == '\n') SKIP(45); + if (lookahead == '\n') SKIP(48); END_STATE(); case 6: - if (lookahead == '\n') SKIP(45); + if (lookahead == '\n') SKIP(48); if (lookahead == '\r') SKIP(5); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 7: - if (lookahead == '\n') SKIP(47); + if (lookahead == '\n') SKIP(50); END_STATE(); case 8: - if (lookahead == '\n') SKIP(47); + if (lookahead == '\n') SKIP(50); if (lookahead == '\r') SKIP(7); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 9: - if (lookahead == '\n') SKIP(49); + if (lookahead == '\n') SKIP(52); END_STATE(); case 10: - if (lookahead == '\n') SKIP(49); + if (lookahead == '\n') SKIP(52); if (lookahead == '\r') SKIP(9); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 11: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(56); END_STATE(); case 12: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(56); if (lookahead == '\r') SKIP(11); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 13: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(55); END_STATE(); case 14: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(55); if (lookahead == '\r') SKIP(13); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 15: - if (lookahead == '\n') SKIP(57); + if (lookahead == '\n') SKIP(60); END_STATE(); case 16: - if (lookahead == '\n') SKIP(57); + if (lookahead == '\n') SKIP(60); if (lookahead == '\r') SKIP(15); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 17: - if (lookahead == '\n') SKIP(50); + if (lookahead == '\n') SKIP(53); END_STATE(); case 18: - if (lookahead == '\n') SKIP(50); + if (lookahead == '\n') SKIP(53); if (lookahead == '\r') SKIP(17); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 19: - if (lookahead == '\n') SKIP(51); + if (lookahead == '\n') SKIP(54); END_STATE(); case 20: - if (lookahead == '\n') SKIP(51); + if (lookahead == '\n') SKIP(54); if (lookahead == '\r') SKIP(19); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 21: - if (lookahead == '\n') SKIP(48); + if (lookahead == '\n') SKIP(51); END_STATE(); case 22: - if (lookahead == '\n') SKIP(48); + if (lookahead == '\n') SKIP(51); if (lookahead == '\r') SKIP(21); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 23: if (lookahead == '\n') SKIP(25); @@ -5626,777 +5916,794 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 25: ADVANCE_MAP( - '\n', 130, - '!', 68, - '%', 204, - '&', 213, - '(', 186, - '*', 200, - '+', 195, - '-', 190, - '/', 202, - '<', 222, - '=', 69, - '>', 218, + '\n', 133, + '!', 71, + '%', 208, + '&', 217, + '(', 190, + '*', 204, + '+', 199, + '-', 194, + '/', 206, + '<', 226, + '=', 72, + '>', 222, ); if (lookahead == '\\') SKIP(24); - if (lookahead == '^') ADVANCE(210); - if (lookahead == '|') ADVANCE(209); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '|') ADVANCE(213); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(25); END_STATE(); case 26: - if (lookahead == '\n') SKIP(56); + if (lookahead == '\n') SKIP(28); END_STATE(); case 27: - if (lookahead == '\n') SKIP(56); + if (lookahead == '\n') SKIP(28); if (lookahead == '\r') SKIP(26); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 28: - if (lookahead == '\n') SKIP(54); + ADVANCE_MAP( + '\n', 134, + '!', 71, + '%', 208, + '&', 217, + '(', 190, + '*', 204, + '+', 199, + '-', 194, + '/', 206, + '<', 226, + '=', 72, + '>', 222, + '\\', 27, + '^', 214, + '|', 213, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(28); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 29: - if (lookahead == '\n') SKIP(54); - if (lookahead == '\r') SKIP(28); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == '\n') SKIP(59); END_STATE(); case 30: - if (lookahead == '\n') SKIP(58); - if (lookahead == '\'') ADVANCE(278); - if (lookahead == '/') ADVANCE(281); - if (lookahead == '\\') ADVANCE(280); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(282); - if (lookahead != 0) ADVANCE(279); + if (lookahead == '\n') SKIP(59); + if (lookahead == '\r') SKIP(29); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(294); - if (lookahead == '\r') ADVANCE(293); - if (lookahead == 'U') ADVANCE(117); - if (lookahead == 'u') ADVANCE(109); - if (lookahead == 'x') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(296); - if (lookahead != 0) ADVANCE(293); + if (lookahead == '\n') SKIP(57); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(123); - if (lookahead == '\r') ADVANCE(36); - if (lookahead == '(') ADVANCE(125); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '\\') ADVANCE(146); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(66); - if (lookahead != 0) ADVANCE(153); + if (lookahead == '\n') SKIP(57); + if (lookahead == '\r') SKIP(31); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(123); - if (lookahead == '\r') ADVANCE(36); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '\\') ADVANCE(146); + if (lookahead == '\n') ADVANCE(126); + if (lookahead == '\r') ADVANCE(37); + if (lookahead == '(') ADVANCE(128); + if (lookahead == '/') ADVANCE(155); + if (lookahead == '\\') ADVANCE(150); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(66); - if (lookahead != 0) ADVANCE(153); + lookahead == ' ') SKIP(69); + if (lookahead != 0) ADVANCE(157); END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(123); - if (lookahead == '\r') ADVANCE(35); - if (lookahead == '(') ADVANCE(186); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') SKIP(39); + if (lookahead == '\n') ADVANCE(126); + if (lookahead == '\r') ADVANCE(37); + if (lookahead == '/') ADVANCE(155); + if (lookahead == '\\') ADVANCE(150); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(59); + lookahead == ' ') SKIP(69); + if (lookahead != 0) ADVANCE(157); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(123); - if (lookahead == '(') ADVANCE(186); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') SKIP(39); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(59); + if (lookahead == '\n') ADVANCE(126); + if (lookahead == '\r') ADVANCE(36); + if (lookahead == '(') ADVANCE(190); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') SKIP(42); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(62); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(123); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '\\') ADVANCE(146); + if (lookahead == '\n') ADVANCE(126); + if (lookahead == '(') ADVANCE(190); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') SKIP(42); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66); - if (lookahead != 0) ADVANCE(153); + lookahead == ' ') SKIP(62); END_STATE(); case 37: - if (lookahead == '\n') SKIP(55); - if (lookahead == '"') ADVANCE(287); - if (lookahead == '/') ADVANCE(288); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\n') ADVANCE(126); + if (lookahead == '/') ADVANCE(155); + if (lookahead == '\\') ADVANCE(150); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(291); - if (lookahead != 0) ADVANCE(292); + lookahead == ' ') SKIP(69); + if (lookahead != 0) ADVANCE(157); END_STATE(); case 38: - if (lookahead == '\n') SKIP(59); + if (lookahead == '\n') SKIP(58); + if (lookahead == '"') ADVANCE(291); + if (lookahead == '/') ADVANCE(292); + if (lookahead == '\\') ADVANCE(39); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(295); + if (lookahead != 0) ADVANCE(296); END_STATE(); case 39: - if (lookahead == '\n') SKIP(59); - if (lookahead == '\r') SKIP(38); + if (lookahead == '\n') ADVANCE(298); + if (lookahead == '\r') ADVANCE(297); + if (lookahead == 'U') ADVANCE(120); + if (lookahead == 'u') ADVANCE(112); + if (lookahead == 'x') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (lookahead != 0) ADVANCE(297); END_STATE(); case 40: - if (lookahead == '\n') SKIP(44); + if (lookahead == '\n') SKIP(61); + if (lookahead == '\'') ADVANCE(282); + if (lookahead == '/') ADVANCE(285); + if (lookahead == '\\') ADVANCE(284); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(286); + if (lookahead != 0) ADVANCE(283); END_STATE(); case 41: - if (lookahead == '\n') SKIP(44); - if (lookahead == '\r') SKIP(40); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == '\n') SKIP(62); END_STATE(); case 42: - if (lookahead == '\r') ADVANCE(323); - if (lookahead == '\\') ADVANCE(317); - if (lookahead != 0) ADVANCE(322); + if (lookahead == '\n') SKIP(62); + if (lookahead == '\r') SKIP(41); END_STATE(); case 43: - ADVANCE_MAP( - '!', 188, - '"', 287, - '#', 75, - '%', 205, - '&', 214, - '\'', 278, - '(', 186, - ')', 128, - '*', 201, - '+', 196, - ',', 127, - '-', 191, - '.', 254, - '/', 203, - '0', 260, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 302, - 'U', 304, - '[', 234, - '\\', 2, - ']', 235, - '^', 211, - 'u', 306, - '{', 231, - '|', 208, - '}', 232, - '~', 189, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (lookahead == '\n') SKIP(47); END_STATE(); case 44: - ADVANCE_MAP( - '!', 188, - '"', 287, - '#', 83, - '%', 205, - '&', 214, - '\'', 278, - '(', 186, - ')', 128, - '*', 201, - '+', 196, - ',', 127, - '-', 191, - '.', 254, - '/', 203, - '0', 260, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 302, - 'U', 304, - '[', 233, - '\\', 41, - ']', 235, - '^', 211, - 'u', 306, - '{', 231, - '|', 208, - '}', 232, - '~', 189, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (lookahead == '\n') SKIP(47); + if (lookahead == '\r') SKIP(43); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 45: - ADVANCE_MAP( - '!', 187, - '"', 287, - '#', 75, - '&', 212, - '\'', 278, - '(', 186, - '*', 200, - '+', 197, - ',', 127, - '-', 192, - '.', 96, - '/', 60, - '0', 260, - ':', 67, - ';', 227, - 'L', 302, - 'U', 304, - '[', 73, - '\\', 6, - ']', 74, - 'u', 306, - '{', 231, - '~', 189, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (lookahead == '\r') ADVANCE(327); + if (lookahead == '\\') ADVANCE(321); + if (lookahead != 0) ADVANCE(326); END_STATE(); case 46: ADVANCE_MAP( - '!', 187, - '"', 287, - '#', 79, - '&', 212, - '\'', 278, - '(', 186, - ')', 128, - '*', 200, - '+', 197, - ',', 127, - '-', 192, - '.', 255, - '/', 60, - '0', 260, - ':', 238, - ';', 227, - '=', 236, - 'L', 302, - 'U', 304, - '[', 234, - '\\', 4, - ']', 235, - 'u', 306, - '{', 231, - '}', 232, - '~', 189, + '!', 192, + '"', 291, + '#', 78, + '%', 209, + '&', 218, + '\'', 282, + '(', 190, + ')', 131, + '*', 205, + '+', 200, + ',', 130, + '-', 195, + '.', 258, + '/', 207, + '0', 264, + ':', 242, + ';', 231, + '<', 225, + '=', 241, + '>', 221, + '?', 243, + 'L', 306, + 'U', 308, + '[', 238, + '\\', 2, + ']', 239, + '^', 215, + 'u', 310, + '{', 235, + '|', 212, + '}', 236, + '~', 193, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(46); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 47: ADVANCE_MAP( - '!', 187, - '"', 287, - '#', 77, - '&', 212, - '\'', 278, - '(', 186, - '*', 200, - '+', 197, - '-', 192, - '.', 96, - '/', 60, - '0', 260, - ';', 227, - 'L', 302, - 'U', 304, - '[', 73, - '\\', 8, - 'u', 306, - '{', 231, - '~', 189, + '!', 192, + '"', 291, + '#', 86, + '%', 209, + '&', 218, + '\'', 282, + '(', 190, + ')', 131, + '*', 205, + '+', 200, + ',', 130, + '-', 195, + '.', 258, + '/', 207, + '0', 264, + ':', 242, + ';', 231, + '<', 225, + '=', 241, + '>', 221, + '?', 243, + 'L', 306, + 'U', 308, + '[', 238, + '\\', 44, + ']', 239, + '^', 215, + 'u', 310, + '{', 235, + '|', 212, + '}', 236, + '~', 193, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(47); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 48: ADVANCE_MAP( - '!', 187, - '\'', 278, - '(', 186, - ')', 128, - '+', 199, - '-', 194, - '.', 96, - '/', 60, - '0', 260, - 'L', 310, - 'U', 311, - '\\', 22, - 'u', 312, - '~', 189, + '!', 191, + '"', 291, + '#', 78, + '&', 216, + '\'', 282, + '(', 190, + '*', 204, + '+', 201, + ',', 130, + '-', 196, + '.', 99, + '/', 63, + '0', 264, + ':', 70, + ';', 231, + 'L', 306, + 'U', 308, + '[', 76, + '\\', 6, + ']', 77, + 'u', 310, + '{', 235, + '~', 193, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(48); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 49: ADVANCE_MAP( - '!', 68, - '"', 287, - '#', 83, - '%', 205, - '&', 214, - '(', 186, - ')', 128, - '*', 201, - '+', 198, - ',', 127, - '-', 193, - '.', 253, - '/', 203, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 303, - 'U', 305, - '[', 234, - '\\', 10, - ']', 235, - '^', 211, - 'u', 307, - '|', 208, - '}', 232, + '!', 191, + '"', 291, + '#', 82, + '&', 216, + '\'', 282, + '(', 190, + ')', 131, + '*', 204, + '+', 201, + ',', 130, + '-', 196, + '.', 259, + '/', 63, + '0', 264, + ':', 242, + ';', 231, + '=', 240, + 'L', 306, + 'U', 308, + '[', 238, + '\\', 4, + ']', 239, + 'u', 310, + '{', 235, + '}', 236, + '~', 193, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(49); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 50: ADVANCE_MAP( - '!', 68, - '#', 83, - '%', 205, - '&', 214, - '(', 186, - ')', 128, - '*', 201, - '+', 198, - ',', 127, - '-', 193, - '.', 253, - '/', 203, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - '[', 234, - '\\', 18, - ']', 235, - '^', 211, - '{', 231, - '|', 208, - '}', 232, + '!', 191, + '"', 291, + '#', 80, + '&', 216, + '\'', 282, + '(', 190, + '*', 204, + '+', 201, + '-', 196, + '.', 99, + '/', 63, + '0', 264, + ';', 231, + 'L', 306, + 'U', 308, + '[', 76, + '\\', 8, + 'u', 310, + '{', 235, + '~', 193, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(50); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 51: ADVANCE_MAP( - '!', 68, - '#', 83, - '%', 205, - '&', 214, - '(', 186, - ')', 128, - '*', 201, - '+', 198, - ',', 127, - '-', 193, - '.', 252, - '/', 203, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - '[', 233, - '\\', 20, - ']', 74, - '^', 211, - '|', 208, - '}', 232, + '!', 191, + '\'', 282, + '(', 190, + ')', 131, + '+', 203, + '-', 198, + '.', 99, + '/', 63, + '0', 264, + 'L', 314, + 'U', 315, + '\\', 22, + 'u', 316, + '~', 193, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 52: ADVANCE_MAP( - '!', 68, - '#', 80, - '%', 204, - '&', 213, - '(', 186, - ')', 128, - '*', 200, - '+', 195, - ',', 127, - '-', 190, - '/', 202, - ';', 227, - '<', 222, - '=', 237, - '>', 218, - '[', 234, - '\\', 14, - '^', 210, - '{', 231, - '|', 209, - '}', 232, + '!', 71, + '"', 291, + '#', 86, + '%', 209, + '&', 218, + '(', 190, + ')', 131, + '*', 205, + '+', 202, + ',', 130, + '-', 197, + '.', 257, + '/', 207, + ':', 242, + ';', 231, + '<', 225, + '=', 241, + '>', 221, + '?', 243, + 'L', 307, + 'U', 309, + '[', 238, + '\\', 10, + ']', 239, + '^', 215, + 'u', 311, + '{', 235, + '|', 212, + '}', 236, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 53: ADVANCE_MAP( - '!', 68, - '#', 76, - '%', 205, - '&', 214, - '(', 186, - ')', 128, - '*', 201, - '+', 198, - ',', 127, - '-', 193, - '.', 253, - '/', 203, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - '[', 234, - '\\', 12, - '^', 211, - '{', 231, - '|', 208, - '}', 232, + '!', 71, + '#', 86, + '%', 209, + '&', 218, + '(', 190, + ')', 131, + '*', 205, + '+', 202, + ',', 130, + '-', 197, + '.', 257, + '/', 207, + ':', 242, + ';', 231, + '<', 225, + '=', 241, + '>', 221, + '?', 243, + '[', 238, + '\\', 18, + ']', 239, + '^', 215, + '{', 235, + '|', 212, + '}', 236, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 54: - if (lookahead == '"') ADVANCE(287); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '<') ADVANCE(70); - if (lookahead == 'L') ADVANCE(303); - if (lookahead == 'U') ADVANCE(305); - if (lookahead == '\\') ADVANCE(29); - if (lookahead == 'u') ADVANCE(307); + ADVANCE_MAP( + '!', 71, + '#', 86, + '%', 209, + '&', 218, + '(', 190, + ')', 131, + '*', 205, + '+', 202, + ',', 130, + '-', 197, + '.', 256, + '/', 207, + ':', 242, + ';', 231, + '<', 225, + '=', 241, + '>', 221, + '?', 243, + '[', 237, + '\\', 20, + ']', 77, + '^', 215, + '|', 212, + '}', 236, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 55: - if (lookahead == '"') ADVANCE(287); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(31); + ADVANCE_MAP( + '!', 71, + '#', 83, + '%', 208, + '&', 217, + '(', 190, + ')', 131, + '*', 204, + '+', 199, + ',', 130, + '-', 194, + '/', 206, + ';', 231, + '<', 226, + '=', 241, + '>', 222, + '[', 238, + '\\', 14, + '^', 214, + '{', 235, + '|', 213, + '}', 236, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(55); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 56: - if (lookahead == '#') ADVANCE(93); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '}') ADVANCE(232); + ADVANCE_MAP( + '!', 71, + '#', 79, + '%', 209, + '&', 218, + '(', 190, + ')', 131, + '*', 205, + '+', 202, + ',', 130, + '-', 197, + '.', 257, + '/', 207, + ':', 242, + ';', 231, + '<', 225, + '=', 241, + '>', 221, + '?', 243, + '[', 238, + '\\', 12, + '^', 215, + '{', 235, + '|', 212, + '}', 236, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 57: - if (lookahead == '#') ADVANCE(78); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '[') ADVANCE(73); - if (lookahead == '\\') ADVANCE(16); + if (lookahead == '"') ADVANCE(291); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'L') ADVANCE(307); + if (lookahead == 'U') ADVANCE(309); + if (lookahead == '\\') ADVANCE(32); + if (lookahead == 'u') ADVANCE(311); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(57); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 58: - if (lookahead == '\'') ADVANCE(278); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '"') ADVANCE(291); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') ADVANCE(39); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58); END_STATE(); case 59: - if (lookahead == '(') ADVANCE(186); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') SKIP(39); + if (lookahead == '#') ADVANCE(96); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(59); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 60: - if (lookahead == '*') ADVANCE(62); - if (lookahead == '/') ADVANCE(322); + if (lookahead == '#') ADVANCE(81); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '[') ADVANCE(76); + if (lookahead == '\\') ADVANCE(16); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(60); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); case 61: - if (lookahead == '*') ADVANCE(61); - if (lookahead == '/') ADVANCE(315); - if (lookahead != 0) ADVANCE(62); + if (lookahead == '\'') ADVANCE(282); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') ADVANCE(39); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(61); END_STATE(); case 62: - if (lookahead == '*') ADVANCE(61); - if (lookahead != 0) ADVANCE(62); + if (lookahead == '(') ADVANCE(190); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') SKIP(42); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(62); END_STATE(); case 63: - if (lookahead == '*') ADVANCE(61); - if (lookahead != 0) ADVANCE(144); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '/') ADVANCE(326); END_STATE(); case 64: - if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(258); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(268); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '/') ADVANCE(319); + if (lookahead != 0) ADVANCE(65); END_STATE(); case 65: - if (lookahead == '.') ADVANCE(126); + if (lookahead == '*') ADVANCE(64); + if (lookahead != 0) ADVANCE(65); END_STATE(); case 66: - if (lookahead == '/') ADVANCE(151); - if (lookahead == '\\') ADVANCE(146); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66); - if (lookahead != 0) ADVANCE(153); + if (lookahead == '*') ADVANCE(64); + if (lookahead != 0) ADVANCE(148); END_STATE(); case 67: - if (lookahead == ':') ADVANCE(228); + if (lookahead == '.') ADVANCE(99); + if (lookahead == '0') ADVANCE(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(263); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(272); END_STATE(); case 68: - if (lookahead == '=') ADVANCE(216); + if (lookahead == '.') ADVANCE(129); END_STATE(); case 69: - if (lookahead == '=') ADVANCE(215); + if (lookahead == '/') ADVANCE(155); + if (lookahead == '\\') ADVANCE(150); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(69); + if (lookahead != 0) ADVANCE(157); END_STATE(); case 70: - if (lookahead == '>') ADVANCE(300); - if (lookahead == '\\') ADVANCE(71); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(70); + if (lookahead == ':') ADVANCE(232); END_STATE(); case 71: - if (lookahead == '>') ADVANCE(301); - if (lookahead == '\\') ADVANCE(71); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(70); + if (lookahead == '=') ADVANCE(220); END_STATE(); case 72: - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + if (lookahead == '=') ADVANCE(219); END_STATE(); case 73: - if (lookahead == '[') ADVANCE(229); + if (lookahead == '>') ADVANCE(304); + if (lookahead == '\\') ADVANCE(74); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(73); END_STATE(); case 74: - if (lookahead == ']') ADVANCE(230); + if (lookahead == '>') ADVANCE(305); + if (lookahead == '\\') ADVANCE(74); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(73); END_STATE(); case 75: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'e') ADVANCE(180); - if (lookahead == 'i') ADVANCE(168); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(75); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + if (lookahead == 'U') ADVANCE(119); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 76: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'e') ADVANCE(180); - if (lookahead == 'i') ADVANCE(169); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(76); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + if (lookahead == '[') ADVANCE(233); END_STATE(); case 77: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'e') ADVANCE(182); - if (lookahead == 'i') ADVANCE(168); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + if (lookahead == ']') ADVANCE(234); END_STATE(); case 78: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'e') ADVANCE(182); - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 'd') ADVANCE(164); + if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'i') ADVANCE(172); if (lookahead == '\t' || lookahead == ' ') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 79: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'd') ADVANCE(164); + if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'i') ADVANCE(173); if (lookahead == '\t' || lookahead == ' ') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 80: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 'd') ADVANCE(164); + if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'i') ADVANCE(172); if (lookahead == '\t' || lookahead == ' ') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 81: - if (lookahead == 'd') ADVANCE(92); + if (lookahead == 'd') ADVANCE(164); + if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'i') ADVANCE(173); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 82: - if (lookahead == 'd') ADVANCE(86); + if (lookahead == 'd') ADVANCE(164); + if (lookahead == 'i') ADVANCE(172); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'd') ADVANCE(164); + if (lookahead == 'i') ADVANCE(173); if (lookahead == '\t' || lookahead == ' ') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(135); + if (lookahead == 'd') ADVANCE(95); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(89); + if (lookahead == 'd') ADVANCE(89); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(90); + if (lookahead == 'e') ADVANCE(97); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(86); END_STATE(); case 87: - if (lookahead == 'f') ADVANCE(137); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 88: - if (lookahead == 'f') ADVANCE(131); + if (lookahead == 'e') ADVANCE(92); END_STATE(); case 89: - if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'e') ADVANCE(93); END_STATE(); case 90: if (lookahead == 'f') ADVANCE(141); END_STATE(); case 91: - if (lookahead == 'i') ADVANCE(87); - if (lookahead == 's') ADVANCE(84); + if (lookahead == 'f') ADVANCE(135); END_STATE(); case 92: - if (lookahead == 'i') ADVANCE(88); + if (lookahead == 'f') ADVANCE(143); END_STATE(); case 93: - if (lookahead == 'i') ADVANCE(169); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + if (lookahead == 'f') ADVANCE(145); END_STATE(); case 94: - if (lookahead == 'l') ADVANCE(91); - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'i') ADVANCE(90); + if (lookahead == 's') ADVANCE(87); END_STATE(); case 95: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (lookahead == 'i') ADVANCE(91); END_STATE(); case 96: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); + if (lookahead == 'i') ADVANCE(173); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 97: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(268); + if (lookahead == 'l') ADVANCE(94); + if (lookahead == 'n') ADVANCE(84); END_STATE(); case 98: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(266); END_STATE(); case 99: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); case 100: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(272); END_STATE(); case 101: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); END_STATE(); case 102: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(269); END_STATE(); case 103: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(299); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(272); END_STATE(); case 104: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(98); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); END_STATE(); case 105: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(297); END_STATE(); case 106: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 107: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); END_STATE(); case 108: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); END_STATE(); case 109: if (('0' <= lookahead && lookahead <= '9') || @@ -6444,1448 +6751,1468 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 118: - if (lookahead != 0 && - lookahead != '*') ADVANCE(153); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 119: - if (eof) ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + END_STATE(); + case 120: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + END_STATE(); + case 121: + if (lookahead != 0 && + lookahead != '*') ADVANCE(157); + END_STATE(); + case 122: + if (eof) ADVANCE(124); ADVANCE_MAP( - '!', 188, - '"', 287, - '#', 75, - '%', 205, - '&', 214, - '\'', 278, - '(', 186, - ')', 128, - '*', 201, - '+', 196, - ',', 127, - '-', 191, - '.', 254, - '/', 203, - '0', 260, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 302, - 'U', 304, - '[', 234, + '!', 192, + '"', 291, + '#', 78, + '%', 209, + '&', 218, + '\'', 282, + '(', 190, + ')', 131, + '*', 205, + '+', 200, + ',', 130, + '-', 195, + '.', 258, + '/', 207, + '0', 264, + ':', 242, + ';', 231, + '<', 225, + '=', 241, + '>', 221, + '?', 243, + 'L', 306, + 'U', 308, + '[', 238, '\\', 2, - ']', 235, - '^', 211, - 'u', 306, - '{', 231, - '|', 208, - '}', 232, - '~', 189, + ']', 239, + '^', 215, + 'u', 310, + '{', 235, + '|', 212, + '}', 236, + '~', 193, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(119); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + lookahead == ' ') SKIP(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); - case 120: - if (eof) ADVANCE(121); + case 123: + if (eof) ADVANCE(124); ADVANCE_MAP( - '!', 187, - '"', 287, - '#', 79, - '&', 212, - '\'', 278, - '(', 186, - ')', 128, - '*', 200, - '+', 197, - ',', 127, - '-', 192, - '.', 255, - '/', 60, - '0', 260, - ':', 238, - ';', 227, - '=', 236, - 'L', 302, - 'U', 304, - '[', 234, + '!', 191, + '"', 291, + '#', 82, + '&', 216, + '\'', 282, + '(', 190, + ')', 131, + '*', 204, + '+', 201, + ',', 130, + '-', 196, + '.', 259, + '/', 63, + '0', 264, + ':', 242, + ';', 231, + '=', 240, + 'L', 306, + 'U', 308, + '[', 238, '\\', 4, - ']', 235, - 'u', 306, - '{', 231, - '}', 232, - '~', 189, + ']', 239, + 'u', 310, + '{', 235, + '}', 236, + '~', 193, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(314); + lookahead == ' ') SKIP(123); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(318); END_STATE(); - case 121: + case 124: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 122: + case 125: ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 123: + case 126: ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); - case 124: + case 127: ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 125: + case 128: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 126: + case 129: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 127: + case 130: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 128: + case 131: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 129: + case 132: ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(164); - if (lookahead == 'n') ADVANCE(158); + if (lookahead == 'd') ADVANCE(168); + if (lookahead == 'n') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 130: + case 133: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(130); + if (lookahead == '\n') ADVANCE(133); END_STATE(); - case 131: + case 134: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(134); + if (lookahead == '\\') ADVANCE(27); + END_STATE(); + case 135: ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); - case 132: + case 136: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 133: + case 137: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 134: + case 138: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 135: + case 139: ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); - case 136: + case 140: ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 137: + case 141: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(85); - if (lookahead == 'n') ADVANCE(82); + if (lookahead == 'd') ADVANCE(88); + if (lookahead == 'n') ADVANCE(85); END_STATE(); - case 138: + case 142: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(166); - if (lookahead == 'n') ADVANCE(159); + if (lookahead == 'd') ADVANCE(170); + if (lookahead == 'n') ADVANCE(163); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 139: + case 143: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); END_STATE(); - case 140: + case 144: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 141: + case 145: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); END_STATE(); - case 142: + case 146: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); - END_STATE(); - case 143: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(62); - if (lookahead == '*') ADVANCE(143); - if (lookahead == '/') ADVANCE(315); - if (lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(144); - END_STATE(); - case 144: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(62); - if (lookahead == '*') ADVANCE(143); - if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(144); - END_STATE(); - case 145: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(322); - if (lookahead == '\r') ADVANCE(316); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(318); - if (lookahead != 0) ADVANCE(320); - END_STATE(); - case 146: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(66); - if (lookahead == '\r') ADVANCE(147); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(153); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 147: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(66); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(153); + if (lookahead == '\n') ADVANCE(65); + if (lookahead == '*') ADVANCE(147); + if (lookahead == '/') ADVANCE(319); + if (lookahead == '\\') ADVANCE(153); + if (lookahead != 0) ADVANCE(148); END_STATE(); case 148: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(154); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(153); + if (lookahead == '\n') ADVANCE(65); + if (lookahead == '*') ADVANCE(147); + if (lookahead == '/') ADVANCE(66); + if (lookahead == '\\') ADVANCE(153); + if (lookahead != 0) ADVANCE(148); END_STATE(); case 149: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(152); - if (lookahead == '*') ADVANCE(143); - if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(144); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') ADVANCE(320); + if (lookahead == '/') ADVANCE(323); + if (lookahead == '\\') ADVANCE(322); + if (lookahead != 0) ADVANCE(324); END_STATE(); case 150: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(321); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(318); - if (lookahead != 0) ADVANCE(320); + if (lookahead == '\n') SKIP(69); + if (lookahead == '\r') ADVANCE(151); + if (lookahead == '/') ADVANCE(121); + if (lookahead == '\\') ADVANCE(152); + if (lookahead != 0) ADVANCE(157); END_STATE(); case 151: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(144); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(148); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(153); + if (lookahead == '\n') SKIP(69); + if (lookahead == '/') ADVANCE(121); + if (lookahead == '\\') ADVANCE(152); + if (lookahead != 0) ADVANCE(157); END_STATE(); case 152: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(143); - if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(144); + if (lookahead == '\r') ADVANCE(158); + if (lookahead == '/') ADVANCE(121); + if (lookahead == '\\') ADVANCE(152); + if (lookahead != 0) ADVANCE(157); END_STATE(); case 153: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '\\') ADVANCE(148); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(153); + if (lookahead == '\r') ADVANCE(156); + if (lookahead == '*') ADVANCE(147); + if (lookahead == '/') ADVANCE(66); + if (lookahead == '\\') ADVANCE(153); + if (lookahead != 0) ADVANCE(148); END_STATE(); case 154: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(153); + if (lookahead == '\r') ADVANCE(325); + if (lookahead == '/') ADVANCE(323); + if (lookahead == '\\') ADVANCE(322); + if (lookahead != 0) ADVANCE(324); END_STATE(); case 155: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(181); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '/') ADVANCE(323); + if (lookahead == '\\') ADVANCE(152); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(157); END_STATE(); case 156: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(179); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(147); + if (lookahead == '/') ADVANCE(66); + if (lookahead == '\\') ADVANCE(153); + if (lookahead != 0) ADVANCE(148); END_STATE(); case 157: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(121); + if (lookahead == '\\') ADVANCE(152); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(157); END_STATE(); case 158: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(165); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(121); + if (lookahead == '\\') ADVANCE(152); + if (lookahead != 0) ADVANCE(157); END_STATE(); case 159: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(167); + if (lookahead == 'c') ADVANCE(185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 160: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(170); + if (lookahead == 'd') ADVANCE(183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 161: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'd') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 162: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(124); + if (lookahead == 'd') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 163: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(122); + if (lookahead == 'd') ADVANCE(171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 164: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 165: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'e') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 166: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'e') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 167: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'e') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 168: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(129); - if (lookahead == 'n') ADVANCE(155); + if (lookahead == 'e') ADVANCE(177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 169: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(129); + if (lookahead == 'e') ADVANCE(178); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 170: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(177); + if (lookahead == 'e') ADVANCE(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 171: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(138); + if (lookahead == 'e') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 172: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'f') ADVANCE(132); + if (lookahead == 'n') ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 173: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'f') ADVANCE(132); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 174: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(134); + if (lookahead == 'f') ADVANCE(181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 175: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'f') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 176: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'f') ADVANCE(136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 177: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(183); + if (lookahead == 'f') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 178: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(171); - if (lookahead == 's') ADVANCE(161); + if (lookahead == 'f') ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 179: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(172); + if (lookahead == 'f') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 180: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(178); - if (lookahead == 'n') ADVANCE(156); + if (lookahead == 'f') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 181: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(184); + if (lookahead == 'i') ADVANCE(187); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 182: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(156); + if (lookahead == 'i') ADVANCE(175); + if (lookahead == 's') ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 183: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(162); + if (lookahead == 'i') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 184: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(157); + if (lookahead == 'l') ADVANCE(182); + if (lookahead == 'n') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 185: ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(160); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(216); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(161); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(256); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(220); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(256); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 194: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(254); + if (lookahead == '.') ADVANCE(99); + if (lookahead == '0') ADVANCE(264); + if (lookahead == '=') ADVANCE(248); + if (lookahead == '>') ADVANCE(260); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(251); - if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (lookahead == '=') ADVANCE(243); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(254); + if (lookahead == '.') ADVANCE(99); + if (lookahead == '0') ADVANCE(264); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(251); - if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(254); + if (lookahead == '=') ADVANCE(248); + if (lookahead == '>') ADVANCE(260); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(251); - if (lookahead == '=') ADVANCE(243); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(99); + if (lookahead == '0') ADVANCE(264); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); END_STATE(); case 199: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(255); + if (lookahead == '.') ADVANCE(99); + if (lookahead == '0') ADVANCE(264); + if (lookahead == '=') ADVANCE(247); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(240); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(255); + if (lookahead == '.') ADVANCE(99); + if (lookahead == '0') ADVANCE(264); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '/') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(255); + if (lookahead == '=') ADVANCE(247); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '/') ADVANCE(322); - if (lookahead == '=') ADVANCE(241); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(99); + if (lookahead == '0') ADVANCE(264); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(242); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(244); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '/') ADVANCE(326); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '/') ADVANCE(326); + if (lookahead == '=') ADVANCE(245); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(249); - if (lookahead == '|') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(246); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(248); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(253); + if (lookahead == '|') ADVANCE(210); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(210); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(207); - if (lookahead == '=') ADVANCE(247); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(252); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(219); - if (lookahead == '>') ADVANCE(226); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(211); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(219); - if (lookahead == '>') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(211); + if (lookahead == '=') ADVANCE(251); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(224); - if (lookahead == '=') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '>') ADVANCE(230); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(223); - if (lookahead == '=') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '>') ADVANCE(229); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(245); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(228); + if (lookahead == '=') ADVANCE(224); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(246); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(227); + if (lookahead == '=') ADVANCE(224); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(249); END_STATE(); case 229: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(250); END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(233); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(219); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 243: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 245: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 247: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(65); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 256: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 257: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(68); + END_STATE(); + case 258: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 261: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(96); + if (lookahead == '\'') ADVANCE(99); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(273); + lookahead == 'p') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(277); END_STATE(); - case 258: + case 262: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 97, - '.', 271, - 'B', 267, - 'b', 267, - 'E', 266, - 'e', 266, - 'P', 270, - 'p', 270, - 'X', 100, - 'x', 100, - 'A', 268, - 'C', 268, - 'a', 268, - 'c', 268, - 'D', 268, - 'F', 268, - 'd', 268, - 'f', 268, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 100, + '.', 275, + 'B', 271, + 'b', 271, + 'E', 270, + 'e', 270, + 'P', 274, + 'p', 274, + 'X', 103, + 'x', 103, + 'A', 272, + 'C', 272, + 'a', 272, + 'c', 272, + 'D', 272, + 'F', 272, + 'd', 272, + 'f', 272, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); END_STATE(); - case 259: + case 263: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 97, - '.', 271, - 'E', 266, - 'e', 266, - 'P', 270, - 'p', 270, - 'A', 268, - 'C', 268, - 'a', 268, - 'c', 268, - 'B', 268, - 'D', 268, - 'F', 268, - 'b', 268, - 'd', 268, - 'f', 268, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 100, + '.', 275, + 'E', 270, + 'e', 270, + 'P', 274, + 'p', 274, + 'A', 272, + 'C', 272, + 'a', 272, + 'c', 272, + 'B', 272, + 'D', 272, + 'F', 272, + 'b', 272, + 'd', 272, + 'f', 272, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); END_STATE(); - case 260: + case 264: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 95, - '.', 271, - 'B', 269, - 'b', 269, - 'X', 64, - 'x', 64, - 'E', 270, - 'P', 270, - 'e', 270, - 'p', 270, - 'D', 273, - 'F', 273, - 'L', 273, - 'U', 273, - 'W', 273, - 'd', 273, - 'f', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 98, + '.', 275, + 'B', 273, + 'b', 273, + 'X', 67, + 'x', 67, + 'E', 274, + 'P', 274, + 'e', 274, + 'p', 274, + 'D', 277, + 'F', 277, + 'L', 277, + 'U', 277, + 'W', 277, + 'd', 277, + 'f', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(266); END_STATE(); - case 261: + case 265: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 95, - '.', 271, - 'B', 272, - 'b', 272, - 'X', 100, - 'x', 100, - 'E', 270, - 'P', 270, - 'e', 270, - 'p', 270, - 'D', 273, - 'F', 273, - 'L', 273, - 'U', 273, - 'W', 273, - 'd', 273, - 'f', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 98, + '.', 275, + 'B', 276, + 'b', 276, + 'X', 103, + 'x', 103, + 'E', 274, + 'P', 274, + 'e', 274, + 'p', 274, + 'D', 277, + 'F', 277, + 'L', 277, + 'U', 277, + 'W', 277, + 'd', 277, + 'f', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(266); END_STATE(); - case 262: + case 266: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(95); - if (lookahead == '.') ADVANCE(271); + if (lookahead == '\'') ADVANCE(98); + if (lookahead == '.') ADVANCE(275); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(273); + lookahead == 'p') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(277); END_STATE(); - case 263: + case 267: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 101, - 'B', 263, - 'D', 263, - 'F', 263, - 'b', 263, - 'd', 263, - 'f', 263, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 104, + 'B', 267, + 'D', 267, + 'F', 267, + 'b', 267, + 'd', 267, + 'f', 267, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(267); END_STATE(); - case 264: + case 268: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 99, - '+', 101, - '-', 101, - 'E', 264, - 'e', 264, - 'P', 270, - 'p', 270, - 'B', 265, - 'D', 265, - 'F', 265, - 'b', 265, - 'd', 265, - 'f', 265, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 102, + '+', 104, + '-', 104, + 'E', 268, + 'e', 268, + 'P', 274, + 'p', 274, + 'B', 269, + 'D', 269, + 'F', 269, + 'b', 269, + 'd', 269, + 'f', 269, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(265); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(269); END_STATE(); - case 265: + case 269: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 99, - 'E', 264, - 'e', 264, - 'P', 270, - 'p', 270, - 'B', 265, - 'D', 265, - 'F', 265, - 'b', 265, - 'd', 265, - 'f', 265, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 102, + 'E', 268, + 'e', 268, + 'P', 274, + 'p', 274, + 'B', 269, + 'D', 269, + 'F', 269, + 'b', 269, + 'd', 269, + 'f', 269, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(265); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(269); END_STATE(); - case 266: + case 270: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 100, - '.', 271, - '+', 101, - '-', 101, - 'E', 266, - 'e', 266, - 'P', 270, - 'p', 270, - 'B', 268, - 'D', 268, - 'F', 268, - 'b', 268, - 'd', 268, - 'f', 268, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 103, + '.', 275, + '+', 104, + '-', 104, + 'E', 270, + 'e', 270, + 'P', 274, + 'p', 274, + 'B', 272, + 'D', 272, + 'F', 272, + 'b', 272, + 'd', 272, + 'f', 272, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(268); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(272); END_STATE(); - case 267: + case 271: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 100, - '.', 271, - 'E', 266, - 'e', 266, - 'P', 270, - 'p', 270, - 'A', 268, - 'C', 268, - 'a', 268, - 'c', 268, - 'B', 268, - 'D', 268, - 'F', 268, - 'b', 268, - 'd', 268, - 'f', 268, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 103, + '.', 275, + 'E', 270, + 'e', 270, + 'P', 274, + 'p', 274, + 'A', 272, + 'C', 272, + 'a', 272, + 'c', 272, + 'B', 272, + 'D', 272, + 'F', 272, + 'b', 272, + 'd', 272, + 'f', 272, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); END_STATE(); - case 268: + case 272: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 100, - '.', 271, - 'E', 266, - 'e', 266, - 'P', 270, - 'p', 270, - 'B', 268, - 'D', 268, - 'F', 268, - 'b', 268, - 'd', 268, - 'f', 268, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '\'', 103, + '.', 275, + 'E', 270, + 'e', 270, + 'P', 274, + 'p', 274, + 'B', 272, + 'D', 272, + 'F', 272, + 'b', 272, + 'd', 272, + 'f', 272, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(268); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(272); END_STATE(); - case 269: + case 273: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(261); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(273); + if (lookahead == '.') ADVANCE(99); + if (lookahead == '0') ADVANCE(265); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(277); END_STATE(); - case 270: + case 274: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '+', 101, - '-', 101, - 'B', 263, - 'D', 263, - 'F', 263, - 'b', 263, - 'd', 263, - 'f', 263, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + '+', 104, + '-', 104, + 'B', 267, + 'D', 267, + 'F', 267, + 'b', 267, + 'd', 267, + 'f', 267, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(267); END_STATE(); - case 271: + case 275: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - 'E', 264, - 'e', 264, - 'P', 270, - 'p', 270, - 'B', 265, - 'D', 265, - 'F', 265, - 'b', 265, - 'd', 265, - 'f', 265, - 'L', 273, - 'U', 273, - 'W', 273, - 'l', 273, - 'u', 273, - 'w', 273, + 'E', 268, + 'e', 268, + 'P', 274, + 'p', 274, + 'B', 269, + 'D', 269, + 'F', 269, + 'b', 269, + 'd', 269, + 'f', 269, + 'L', 277, + 'U', 277, + 'W', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(265); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(269); END_STATE(); - case 272: + case 276: ACCEPT_TOKEN(sym_number_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(273); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(277); END_STATE(); - case 273: + case 277: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - 'B', 273, - 'D', 273, - 'F', 273, - 'L', 273, - 'U', 273, - 'W', 273, - 'b', 273, - 'd', 273, - 'f', 273, - 'l', 273, - 'u', 273, - 'w', 273, + 'B', 277, + 'D', 277, + 'F', 277, + 'L', 277, + 'U', 277, + 'W', 277, + 'b', 277, + 'd', 277, + 'f', 277, + 'l', 277, + 'u', 277, + 'w', 277, ); END_STATE(); - case 274: + case 278: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 275: + case 279: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 276: + case 280: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 277: + case 281: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 278: + case 282: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 279: + case 283: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 280: + case 284: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(294); - if (lookahead == '\r') ADVANCE(293); - if (lookahead == 'U') ADVANCE(117); - if (lookahead == 'u') ADVANCE(109); - if (lookahead == 'x') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(296); - if (lookahead != 0) ADVANCE(293); + if (lookahead == '\n') ADVANCE(298); + if (lookahead == '\r') ADVANCE(297); + if (lookahead == 'U') ADVANCE(120); + if (lookahead == 'u') ADVANCE(112); + if (lookahead == 'x') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (lookahead != 0) ADVANCE(297); END_STATE(); - case 281: + case 285: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '/') ADVANCE(322); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '/') ADVANCE(326); END_STATE(); - case 282: + case 286: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(39); END_STATE(); - case 283: + case 287: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 284: + case 288: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 285: + case 289: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 286: + case 290: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 287: + case 291: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 288: + case 292: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(290); - if (lookahead == '/') ADVANCE(292); + if (lookahead == '*') ADVANCE(294); + if (lookahead == '/') ADVANCE(296); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(292); + lookahead != '\\') ADVANCE(296); END_STATE(); - case 289: + case 293: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(289); - if (lookahead == '/') ADVANCE(292); + if (lookahead == '*') ADVANCE(293); + if (lookahead == '/') ADVANCE(296); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(290); + lookahead != '\\') ADVANCE(294); END_STATE(); - case 290: + case 294: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(289); + if (lookahead == '*') ADVANCE(293); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(290); + lookahead != '\\') ADVANCE(294); END_STATE(); - case 291: + case 295: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(288); + if (lookahead == '/') ADVANCE(292); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(291); + lookahead == ' ') ADVANCE(295); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(292); + lookahead != '\\') ADVANCE(296); END_STATE(); - case 292: + case 296: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(292); + lookahead != '\\') ADVANCE(296); END_STATE(); - case 293: + case 297: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 294: + case 298: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(39); END_STATE(); - case 295: + case 299: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(297); END_STATE(); - case 296: + case 300: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(299); END_STATE(); - case 297: + case 301: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(297); END_STATE(); - case 298: + case 302: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(297); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(301); END_STATE(); - case 299: + case 303: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(298); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(302); END_STATE(); - case 300: + case 304: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 301: + case 305: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(300); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '>') ADVANCE(304); + if (lookahead == '\\') ADVANCE(74); if (lookahead != 0 && - lookahead != '\n') ADVANCE(70); - END_STATE(); - case 302: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '\'') ADVANCE(274); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); - END_STATE(); - case 303: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); - END_STATE(); - case 304: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(285); - if (lookahead == '\'') ADVANCE(276); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); - END_STATE(); - case 305: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(285); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + lookahead != '\n') ADVANCE(73); END_STATE(); case 306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(284); - if (lookahead == '\'') ADVANCE(275); - if (lookahead == '8') ADVANCE(308); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + if (lookahead == '"') ADVANCE(287); + if (lookahead == '\'') ADVANCE(278); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(284); - if (lookahead == '8') ADVANCE(309); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + if (lookahead == '"') ADVANCE(287); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + if (lookahead == '"') ADVANCE(289); + if (lookahead == '\'') ADVANCE(280); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + if (lookahead == '"') ADVANCE(289); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(274); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + if (lookahead == '"') ADVANCE(288); + if (lookahead == '\'') ADVANCE(279); + if (lookahead == '8') ADVANCE(312); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(276); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + if (lookahead == '"') ADVANCE(288); + if (lookahead == '8') ADVANCE(313); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(275); - if (lookahead == '8') ADVANCE(313); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + if (lookahead == '"') ADVANCE(290); + if (lookahead == '\'') ADVANCE(281); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + if (lookahead == '"') ADVANCE(290); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(314); + if (lookahead == '\'') ADVANCE(278); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 315: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(280); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 316: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(322); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(320); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(279); + if (lookahead == '8') ADVANCE(317); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 317: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(323); - if (lookahead == '\\') ADVANCE(317); - if (lookahead != 0) ADVANCE(322); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(281); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 318: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(321); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(318); - if (lookahead != 0) ADVANCE(320); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(75); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(318); END_STATE(); case 319: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '\\') ADVANCE(145); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(320); END_STATE(); case 320: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(320); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '/') ADVANCE(323); + if (lookahead == '\\') ADVANCE(154); + if (lookahead != 0) ADVANCE(324); END_STATE(); case 321: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(320); + if (lookahead == '\r') ADVANCE(327); + if (lookahead == '\\') ADVANCE(321); + if (lookahead != 0) ADVANCE(326); END_STATE(); case 322: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(42); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(322); + if (lookahead == '\r') ADVANCE(325); + if (lookahead == '/') ADVANCE(323); + if (lookahead == '\\') ADVANCE(322); + if (lookahead != 0) ADVANCE(324); END_STATE(); case 323: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(42); - if (lookahead != 0) ADVANCE(322); + if (lookahead == '*') ADVANCE(326); + if (lookahead == '\\') ADVANCE(149); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(324); + END_STATE(); + case 324: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(323); + if (lookahead == '\\') ADVANCE(154); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(324); + END_STATE(); + case 325: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(323); + if (lookahead == '\\') ADVANCE(154); + if (lookahead != 0) ADVANCE(324); + END_STATE(); + case 326: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(45); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(326); + END_STATE(); + case 327: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(45); + if (lookahead != 0) ADVANCE(326); END_STATE(); default: return false; @@ -9548,2034 +9875,2753 @@ 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}, - [1] = {.lex_state = 120}, - [2] = {.lex_state = 45}, - [3] = {.lex_state = 45}, - [4] = {.lex_state = 45}, - [5] = {.lex_state = 45}, - [6] = {.lex_state = 45}, - [7] = {.lex_state = 45}, - [8] = {.lex_state = 45}, - [9] = {.lex_state = 45}, - [10] = {.lex_state = 45}, - [11] = {.lex_state = 45}, - [12] = {.lex_state = 45}, - [13] = {.lex_state = 45}, - [14] = {.lex_state = 45}, - [15] = {.lex_state = 45}, - [16] = {.lex_state = 45}, - [17] = {.lex_state = 45}, - [18] = {.lex_state = 45}, - [19] = {.lex_state = 45}, - [20] = {.lex_state = 45}, - [21] = {.lex_state = 45}, - [22] = {.lex_state = 45}, - [23] = {.lex_state = 120}, - [24] = {.lex_state = 120}, - [25] = {.lex_state = 120}, - [26] = {.lex_state = 47}, - [27] = {.lex_state = 120}, - [28] = {.lex_state = 120}, - [29] = {.lex_state = 120}, - [30] = {.lex_state = 120}, - [31] = {.lex_state = 120}, - [32] = {.lex_state = 120}, - [33] = {.lex_state = 120}, - [34] = {.lex_state = 120}, - [35] = {.lex_state = 47}, - [36] = {.lex_state = 120}, - [37] = {.lex_state = 120}, - [38] = {.lex_state = 120}, - [39] = {.lex_state = 120}, - [40] = {.lex_state = 47}, - [41] = {.lex_state = 120}, - [42] = {.lex_state = 120}, - [43] = {.lex_state = 120}, - [44] = {.lex_state = 120}, - [45] = {.lex_state = 45}, - [46] = {.lex_state = 45}, - [47] = {.lex_state = 45}, - [48] = {.lex_state = 45}, - [49] = {.lex_state = 45}, - [50] = {.lex_state = 120}, - [51] = {.lex_state = 120}, - [52] = {.lex_state = 120}, - [53] = {.lex_state = 120}, - [54] = {.lex_state = 120}, - [55] = {.lex_state = 120}, - [56] = {.lex_state = 120}, - [57] = {.lex_state = 47}, - [58] = {.lex_state = 47}, - [59] = {.lex_state = 47}, - [60] = {.lex_state = 47}, - [61] = {.lex_state = 47}, - [62] = {.lex_state = 120}, - [63] = {.lex_state = 120}, - [64] = {.lex_state = 120}, - [65] = {.lex_state = 120}, - [66] = {.lex_state = 120}, - [67] = {.lex_state = 120}, - [68] = {.lex_state = 120}, - [69] = {.lex_state = 120}, - [70] = {.lex_state = 120}, - [71] = {.lex_state = 120}, - [72] = {.lex_state = 120}, - [73] = {.lex_state = 120}, - [74] = {.lex_state = 120}, - [75] = {.lex_state = 120}, - [76] = {.lex_state = 120}, - [77] = {.lex_state = 120}, - [78] = {.lex_state = 120}, - [79] = {.lex_state = 120}, - [80] = {.lex_state = 45}, - [81] = {.lex_state = 45}, - [82] = {.lex_state = 45}, - [83] = {.lex_state = 45}, - [84] = {.lex_state = 45}, - [85] = {.lex_state = 45}, - [86] = {.lex_state = 45}, - [87] = {.lex_state = 45}, - [88] = {.lex_state = 45}, - [89] = {.lex_state = 45}, - [90] = {.lex_state = 45}, - [91] = {.lex_state = 45}, - [92] = {.lex_state = 45}, - [93] = {.lex_state = 45}, - [94] = {.lex_state = 45}, - [95] = {.lex_state = 45}, - [96] = {.lex_state = 45}, - [97] = {.lex_state = 45}, - [98] = {.lex_state = 45}, - [99] = {.lex_state = 45}, - [100] = {.lex_state = 45}, - [101] = {.lex_state = 45}, - [102] = {.lex_state = 45}, - [103] = {.lex_state = 45}, - [104] = {.lex_state = 45}, - [105] = {.lex_state = 45}, - [106] = {.lex_state = 45}, - [107] = {.lex_state = 45}, - [108] = {.lex_state = 45}, - [109] = {.lex_state = 45}, - [110] = {.lex_state = 45}, - [111] = {.lex_state = 45}, - [112] = {.lex_state = 45}, - [113] = {.lex_state = 45}, - [114] = {.lex_state = 45}, - [115] = {.lex_state = 120}, - [116] = {.lex_state = 45}, - [117] = {.lex_state = 120}, - [118] = {.lex_state = 45}, - [119] = {.lex_state = 45}, - [120] = {.lex_state = 45}, - [121] = {.lex_state = 45}, - [122] = {.lex_state = 45}, - [123] = {.lex_state = 45}, - [124] = {.lex_state = 45}, - [125] = {.lex_state = 45}, - [126] = {.lex_state = 45}, - [127] = {.lex_state = 45}, - [128] = {.lex_state = 45}, - [129] = {.lex_state = 45}, - [130] = {.lex_state = 45}, - [131] = {.lex_state = 45}, - [132] = {.lex_state = 45}, - [133] = {.lex_state = 45}, - [134] = {.lex_state = 45}, - [135] = {.lex_state = 45}, - [136] = {.lex_state = 45}, - [137] = {.lex_state = 45}, - [138] = {.lex_state = 45}, - [139] = {.lex_state = 45}, - [140] = {.lex_state = 45}, - [141] = {.lex_state = 45}, - [142] = {.lex_state = 45}, - [143] = {.lex_state = 45}, - [144] = {.lex_state = 45}, - [145] = {.lex_state = 45}, - [146] = {.lex_state = 45}, - [147] = {.lex_state = 45}, - [148] = {.lex_state = 47}, - [149] = {.lex_state = 120}, - [150] = {.lex_state = 120}, - [151] = {.lex_state = 120}, - [152] = {.lex_state = 120}, - [153] = {.lex_state = 120}, - [154] = {.lex_state = 120}, - [155] = {.lex_state = 120}, - [156] = {.lex_state = 120}, - [157] = {.lex_state = 120}, - [158] = {.lex_state = 120}, - [159] = {.lex_state = 120}, - [160] = {.lex_state = 120}, - [161] = {.lex_state = 120}, - [162] = {.lex_state = 120}, - [163] = {.lex_state = 120}, - [164] = {.lex_state = 120}, - [165] = {.lex_state = 120}, - [166] = {.lex_state = 120}, - [167] = {.lex_state = 120}, - [168] = {.lex_state = 120}, - [169] = {.lex_state = 120}, - [170] = {.lex_state = 120}, - [171] = {.lex_state = 120}, - [172] = {.lex_state = 120}, - [173] = {.lex_state = 120}, - [174] = {.lex_state = 120}, - [175] = {.lex_state = 120}, - [176] = {.lex_state = 120}, - [177] = {.lex_state = 120}, - [178] = {.lex_state = 47}, - [179] = {.lex_state = 47}, - [180] = {.lex_state = 47}, - [181] = {.lex_state = 120}, - [182] = {.lex_state = 47}, - [183] = {.lex_state = 47}, - [184] = {.lex_state = 47}, - [185] = {.lex_state = 47}, - [186] = {.lex_state = 47}, - [187] = {.lex_state = 47}, - [188] = {.lex_state = 47}, - [189] = {.lex_state = 120}, - [190] = {.lex_state = 47}, - [191] = {.lex_state = 120}, - [192] = {.lex_state = 120}, - [193] = {.lex_state = 47}, - [194] = {.lex_state = 47}, - [195] = {.lex_state = 47}, - [196] = {.lex_state = 47}, - [197] = {.lex_state = 47}, - [198] = {.lex_state = 47}, - [199] = {.lex_state = 47}, - [200] = {.lex_state = 120}, - [201] = {.lex_state = 120}, - [202] = {.lex_state = 47}, - [203] = {.lex_state = 47}, - [204] = {.lex_state = 47}, - [205] = {.lex_state = 47}, - [206] = {.lex_state = 47}, - [207] = {.lex_state = 120}, - [208] = {.lex_state = 47}, - [209] = {.lex_state = 47}, - [210] = {.lex_state = 47}, - [211] = {.lex_state = 47}, - [212] = {.lex_state = 47}, - [213] = {.lex_state = 47}, - [214] = {.lex_state = 47}, - [215] = {.lex_state = 47}, - [216] = {.lex_state = 47}, - [217] = {.lex_state = 47}, - [218] = {.lex_state = 47}, - [219] = {.lex_state = 47}, - [220] = {.lex_state = 120}, - [221] = {.lex_state = 120}, - [222] = {.lex_state = 120}, - [223] = {.lex_state = 120}, - [224] = {.lex_state = 120}, - [225] = {.lex_state = 120}, - [226] = {.lex_state = 120}, - [227] = {.lex_state = 120}, - [228] = {.lex_state = 120}, - [229] = {.lex_state = 120}, - [230] = {.lex_state = 120}, - [231] = {.lex_state = 120}, - [232] = {.lex_state = 120}, - [233] = {.lex_state = 120}, - [234] = {.lex_state = 120}, - [235] = {.lex_state = 120}, - [236] = {.lex_state = 120}, - [237] = {.lex_state = 120}, - [238] = {.lex_state = 120}, - [239] = {.lex_state = 120}, - [240] = {.lex_state = 120}, - [241] = {.lex_state = 120}, - [242] = {.lex_state = 120}, - [243] = {.lex_state = 120}, - [244] = {.lex_state = 120}, - [245] = {.lex_state = 120}, - [246] = {.lex_state = 120}, - [247] = {.lex_state = 120}, - [248] = {.lex_state = 120}, - [249] = {.lex_state = 120}, - [250] = {.lex_state = 120}, - [251] = {.lex_state = 120}, - [252] = {.lex_state = 120}, - [253] = {.lex_state = 120}, - [254] = {.lex_state = 120}, - [255] = {.lex_state = 120}, - [256] = {.lex_state = 47}, - [257] = {.lex_state = 120}, - [258] = {.lex_state = 120}, - [259] = {.lex_state = 120}, - [260] = {.lex_state = 120}, - [261] = {.lex_state = 120}, - [262] = {.lex_state = 120}, - [263] = {.lex_state = 120}, - [264] = {.lex_state = 120}, - [265] = {.lex_state = 120}, - [266] = {.lex_state = 120}, - [267] = {.lex_state = 120}, - [268] = {.lex_state = 120}, - [269] = {.lex_state = 120}, - [270] = {.lex_state = 120}, - [271] = {.lex_state = 120}, - [272] = {.lex_state = 120}, - [273] = {.lex_state = 44}, - [274] = {.lex_state = 120}, - [275] = {.lex_state = 120}, - [276] = {.lex_state = 120}, - [277] = {.lex_state = 120}, - [278] = {.lex_state = 120}, - [279] = {.lex_state = 120}, - [280] = {.lex_state = 120}, - [281] = {.lex_state = 120}, - [282] = {.lex_state = 120}, - [283] = {.lex_state = 120}, - [284] = {.lex_state = 120}, - [285] = {.lex_state = 120}, - [286] = {.lex_state = 47}, - [287] = {.lex_state = 47}, - [288] = {.lex_state = 47}, - [289] = {.lex_state = 47}, - [290] = {.lex_state = 47}, - [291] = {.lex_state = 47}, - [292] = {.lex_state = 47}, - [293] = {.lex_state = 47}, - [294] = {.lex_state = 47}, - [295] = {.lex_state = 47}, - [296] = {.lex_state = 47}, - [297] = {.lex_state = 47}, - [298] = {.lex_state = 47}, - [299] = {.lex_state = 47}, - [300] = {.lex_state = 47}, - [301] = {.lex_state = 47}, - [302] = {.lex_state = 47}, - [303] = {.lex_state = 47}, - [304] = {.lex_state = 47}, - [305] = {.lex_state = 47}, - [306] = {.lex_state = 47}, - [307] = {.lex_state = 47}, - [308] = {.lex_state = 47}, - [309] = {.lex_state = 47}, - [310] = {.lex_state = 47}, - [311] = {.lex_state = 47}, - [312] = {.lex_state = 47}, - [313] = {.lex_state = 47}, - [314] = {.lex_state = 47}, - [315] = {.lex_state = 120}, - [316] = {.lex_state = 120}, - [317] = {.lex_state = 120}, - [318] = {.lex_state = 44}, - [319] = {.lex_state = 120}, - [320] = {.lex_state = 120}, - [321] = {.lex_state = 120}, - [322] = {.lex_state = 120}, - [323] = {.lex_state = 120}, - [324] = {.lex_state = 120}, - [325] = {.lex_state = 120}, - [326] = {.lex_state = 120}, - [327] = {.lex_state = 120}, - [328] = {.lex_state = 120}, - [329] = {.lex_state = 120}, - [330] = {.lex_state = 120}, - [331] = {.lex_state = 120}, - [332] = {.lex_state = 120}, - [333] = {.lex_state = 120}, - [334] = {.lex_state = 120}, - [335] = {.lex_state = 120}, - [336] = {.lex_state = 120}, - [337] = {.lex_state = 120}, - [338] = {.lex_state = 120}, - [339] = {.lex_state = 120}, - [340] = {.lex_state = 120}, - [341] = {.lex_state = 120}, - [342] = {.lex_state = 120}, - [343] = {.lex_state = 120}, - [344] = {.lex_state = 120}, - [345] = {.lex_state = 120}, - [346] = {.lex_state = 120}, - [347] = {.lex_state = 120}, - [348] = {.lex_state = 120}, - [349] = {.lex_state = 120}, - [350] = {.lex_state = 120}, - [351] = {.lex_state = 120}, - [352] = {.lex_state = 120}, - [353] = {.lex_state = 120}, - [354] = {.lex_state = 120}, - [355] = {.lex_state = 120}, - [356] = {.lex_state = 120}, - [357] = {.lex_state = 120}, - [358] = {.lex_state = 120}, - [359] = {.lex_state = 120}, - [360] = {.lex_state = 120}, - [361] = {.lex_state = 120}, - [362] = {.lex_state = 120}, - [363] = {.lex_state = 120}, - [364] = {.lex_state = 120}, - [365] = {.lex_state = 120}, - [366] = {.lex_state = 120}, - [367] = {.lex_state = 120}, - [368] = {.lex_state = 120}, - [369] = {.lex_state = 120}, - [370] = {.lex_state = 120}, - [371] = {.lex_state = 120}, - [372] = {.lex_state = 120}, - [373] = {.lex_state = 120}, - [374] = {.lex_state = 120}, - [375] = {.lex_state = 120}, - [376] = {.lex_state = 120}, - [377] = {.lex_state = 120}, - [378] = {.lex_state = 120}, - [379] = {.lex_state = 120}, - [380] = {.lex_state = 120}, - [381] = {.lex_state = 120}, - [382] = {.lex_state = 120}, - [383] = {.lex_state = 120}, - [384] = {.lex_state = 120}, - [385] = {.lex_state = 120}, - [386] = {.lex_state = 120}, - [387] = {.lex_state = 120}, - [388] = {.lex_state = 120}, - [389] = {.lex_state = 120}, - [390] = {.lex_state = 44}, - [391] = {.lex_state = 120}, - [392] = {.lex_state = 120}, - [393] = {.lex_state = 120}, - [394] = {.lex_state = 120}, - [395] = {.lex_state = 120}, - [396] = {.lex_state = 120}, - [397] = {.lex_state = 120}, - [398] = {.lex_state = 120}, - [399] = {.lex_state = 120}, - [400] = {.lex_state = 120}, - [401] = {.lex_state = 120}, - [402] = {.lex_state = 120}, - [403] = {.lex_state = 120}, - [404] = {.lex_state = 44}, - [405] = {.lex_state = 44}, - [406] = {.lex_state = 120}, - [407] = {.lex_state = 120}, - [408] = {.lex_state = 49}, - [409] = {.lex_state = 49}, - [410] = {.lex_state = 49}, - [411] = {.lex_state = 49}, - [412] = {.lex_state = 49}, - [413] = {.lex_state = 49}, - [414] = {.lex_state = 49}, - [415] = {.lex_state = 49}, - [416] = {.lex_state = 49}, - [417] = {.lex_state = 44}, - [418] = {.lex_state = 49}, - [419] = {.lex_state = 53}, - [420] = {.lex_state = 120}, - [421] = {.lex_state = 120}, - [422] = {.lex_state = 120}, - [423] = {.lex_state = 120}, - [424] = {.lex_state = 120}, - [425] = {.lex_state = 120}, - [426] = {.lex_state = 120}, - [427] = {.lex_state = 120}, - [428] = {.lex_state = 120}, - [429] = {.lex_state = 120}, - [430] = {.lex_state = 120}, - [431] = {.lex_state = 53}, - [432] = {.lex_state = 53}, - [433] = {.lex_state = 53}, - [434] = {.lex_state = 53}, - [435] = {.lex_state = 53}, - [436] = {.lex_state = 53}, - [437] = {.lex_state = 53}, - [438] = {.lex_state = 53}, - [439] = {.lex_state = 53}, - [440] = {.lex_state = 53}, - [441] = {.lex_state = 53}, - [442] = {.lex_state = 53}, - [443] = {.lex_state = 53}, - [444] = {.lex_state = 53}, - [445] = {.lex_state = 53}, - [446] = {.lex_state = 53}, - [447] = {.lex_state = 120}, - [448] = {.lex_state = 53}, - [449] = {.lex_state = 120}, - [450] = {.lex_state = 120}, - [451] = {.lex_state = 120}, - [452] = {.lex_state = 53}, - [453] = {.lex_state = 52}, - [454] = {.lex_state = 52}, - [455] = {.lex_state = 57}, - [456] = {.lex_state = 52}, - [457] = {.lex_state = 57}, - [458] = {.lex_state = 57}, - [459] = {.lex_state = 120}, - [460] = {.lex_state = 120}, - [461] = {.lex_state = 120}, - [462] = {.lex_state = 120}, - [463] = {.lex_state = 120}, - [464] = {.lex_state = 120}, - [465] = {.lex_state = 120}, - [466] = {.lex_state = 120}, - [467] = {.lex_state = 120}, - [468] = {.lex_state = 120}, - [469] = {.lex_state = 120}, - [470] = {.lex_state = 120}, - [471] = {.lex_state = 120}, - [472] = {.lex_state = 120}, - [473] = {.lex_state = 120}, - [474] = {.lex_state = 120}, - [475] = {.lex_state = 120}, - [476] = {.lex_state = 120}, - [477] = {.lex_state = 120}, - [478] = {.lex_state = 120}, - [479] = {.lex_state = 120}, - [480] = {.lex_state = 120}, - [481] = {.lex_state = 120}, - [482] = {.lex_state = 120}, - [483] = {.lex_state = 120}, - [484] = {.lex_state = 120}, - [485] = {.lex_state = 120}, - [486] = {.lex_state = 120}, - [487] = {.lex_state = 120}, - [488] = {.lex_state = 120}, - [489] = {.lex_state = 120}, - [490] = {.lex_state = 120}, - [491] = {.lex_state = 120}, - [492] = {.lex_state = 120}, - [493] = {.lex_state = 120}, - [494] = {.lex_state = 120}, - [495] = {.lex_state = 120}, - [496] = {.lex_state = 120}, - [497] = {.lex_state = 53}, - [498] = {.lex_state = 120}, - [499] = {.lex_state = 53}, - [500] = {.lex_state = 120}, - [501] = {.lex_state = 120}, - [502] = {.lex_state = 120}, - [503] = {.lex_state = 53}, - [504] = {.lex_state = 120}, - [505] = {.lex_state = 120}, - [506] = {.lex_state = 53}, - [507] = {.lex_state = 120}, - [508] = {.lex_state = 120}, - [509] = {.lex_state = 120}, - [510] = {.lex_state = 120}, - [511] = {.lex_state = 120}, - [512] = {.lex_state = 120}, - [513] = {.lex_state = 120}, - [514] = {.lex_state = 120}, - [515] = {.lex_state = 120}, - [516] = {.lex_state = 120}, - [517] = {.lex_state = 120}, - [518] = {.lex_state = 120}, - [519] = {.lex_state = 120}, - [520] = {.lex_state = 120}, - [521] = {.lex_state = 120}, - [522] = {.lex_state = 120}, - [523] = {.lex_state = 120}, - [524] = {.lex_state = 120}, - [525] = {.lex_state = 120}, - [526] = {.lex_state = 120}, - [527] = {.lex_state = 120}, - [528] = {.lex_state = 120}, - [529] = {.lex_state = 120}, - [530] = {.lex_state = 120}, - [531] = {.lex_state = 120}, - [532] = {.lex_state = 120}, - [533] = {.lex_state = 120}, - [534] = {.lex_state = 120}, - [535] = {.lex_state = 120}, - [536] = {.lex_state = 120}, - [537] = {.lex_state = 120}, - [538] = {.lex_state = 120}, - [539] = {.lex_state = 120}, - [540] = {.lex_state = 120}, - [541] = {.lex_state = 120}, - [542] = {.lex_state = 120}, - [543] = {.lex_state = 120}, - [544] = {.lex_state = 120}, - [545] = {.lex_state = 120}, - [546] = {.lex_state = 120}, - [547] = {.lex_state = 120}, - [548] = {.lex_state = 120}, - [549] = {.lex_state = 120}, - [550] = {.lex_state = 49}, - [551] = {.lex_state = 120}, - [552] = {.lex_state = 120}, - [553] = {.lex_state = 120}, - [554] = {.lex_state = 120}, - [555] = {.lex_state = 120}, - [556] = {.lex_state = 120}, - [557] = {.lex_state = 120}, - [558] = {.lex_state = 120}, - [559] = {.lex_state = 120}, - [560] = {.lex_state = 120}, - [561] = {.lex_state = 120}, - [562] = {.lex_state = 120}, - [563] = {.lex_state = 120}, - [564] = {.lex_state = 120}, - [565] = {.lex_state = 120}, - [566] = {.lex_state = 120}, - [567] = {.lex_state = 120}, - [568] = {.lex_state = 120}, - [569] = {.lex_state = 120}, - [570] = {.lex_state = 120}, - [571] = {.lex_state = 120}, - [572] = {.lex_state = 120}, - [573] = {.lex_state = 120}, - [574] = {.lex_state = 120}, - [575] = {.lex_state = 120}, - [576] = {.lex_state = 120}, - [577] = {.lex_state = 120}, - [578] = {.lex_state = 120}, - [579] = {.lex_state = 120}, - [580] = {.lex_state = 120}, - [581] = {.lex_state = 120}, - [582] = {.lex_state = 120}, - [583] = {.lex_state = 120}, - [584] = {.lex_state = 120}, - [585] = {.lex_state = 120}, - [586] = {.lex_state = 120}, - [587] = {.lex_state = 120}, - [588] = {.lex_state = 120}, - [589] = {.lex_state = 120}, - [590] = {.lex_state = 120}, - [591] = {.lex_state = 120}, - [592] = {.lex_state = 120}, - [593] = {.lex_state = 120}, - [594] = {.lex_state = 120}, - [595] = {.lex_state = 120}, - [596] = {.lex_state = 120}, - [597] = {.lex_state = 120}, - [598] = {.lex_state = 120}, - [599] = {.lex_state = 120}, - [600] = {.lex_state = 120}, - [601] = {.lex_state = 120}, - [602] = {.lex_state = 120}, - [603] = {.lex_state = 120}, - [604] = {.lex_state = 120}, - [605] = {.lex_state = 120}, - [606] = {.lex_state = 120}, - [607] = {.lex_state = 120}, - [608] = {.lex_state = 120}, - [609] = {.lex_state = 120}, - [610] = {.lex_state = 120}, - [611] = {.lex_state = 120}, - [612] = {.lex_state = 120}, - [613] = {.lex_state = 120}, - [614] = {.lex_state = 120}, - [615] = {.lex_state = 120}, - [616] = {.lex_state = 120}, - [617] = {.lex_state = 120}, - [618] = {.lex_state = 120}, - [619] = {.lex_state = 120}, - [620] = {.lex_state = 120}, - [621] = {.lex_state = 120}, - [622] = {.lex_state = 120}, - [623] = {.lex_state = 120}, - [624] = {.lex_state = 120}, - [625] = {.lex_state = 120}, - [626] = {.lex_state = 120}, - [627] = {.lex_state = 120}, - [628] = {.lex_state = 49}, - [629] = {.lex_state = 49}, - [630] = {.lex_state = 49}, - [631] = {.lex_state = 49}, - [632] = {.lex_state = 53}, - [633] = {.lex_state = 53}, - [634] = {.lex_state = 50}, - [635] = {.lex_state = 50}, - [636] = {.lex_state = 50}, - [637] = {.lex_state = 50}, - [638] = {.lex_state = 49}, - [639] = {.lex_state = 50}, - [640] = {.lex_state = 50}, - [641] = {.lex_state = 50}, - [642] = {.lex_state = 49}, - [643] = {.lex_state = 50}, - [644] = {.lex_state = 50}, - [645] = {.lex_state = 50}, - [646] = {.lex_state = 53}, - [647] = {.lex_state = 53}, - [648] = {.lex_state = 53}, - [649] = {.lex_state = 53}, - [650] = {.lex_state = 53}, - [651] = {.lex_state = 53}, - [652] = {.lex_state = 53}, - [653] = {.lex_state = 53}, - [654] = {.lex_state = 53}, - [655] = {.lex_state = 53}, - [656] = {.lex_state = 53}, - [657] = {.lex_state = 53}, - [658] = {.lex_state = 53}, - [659] = {.lex_state = 53}, - [660] = {.lex_state = 53}, - [661] = {.lex_state = 53}, - [662] = {.lex_state = 53}, - [663] = {.lex_state = 53}, - [664] = {.lex_state = 53}, - [665] = {.lex_state = 53}, - [666] = {.lex_state = 53}, - [667] = {.lex_state = 120}, - [668] = {.lex_state = 120}, - [669] = {.lex_state = 120}, - [670] = {.lex_state = 120}, - [671] = {.lex_state = 50}, - [672] = {.lex_state = 53}, - [673] = {.lex_state = 49}, - [674] = {.lex_state = 53}, - [675] = {.lex_state = 53}, - [676] = {.lex_state = 50}, - [677] = {.lex_state = 50}, - [678] = {.lex_state = 50}, - [679] = {.lex_state = 50}, - [680] = {.lex_state = 50}, - [681] = {.lex_state = 50}, - [682] = {.lex_state = 50}, - [683] = {.lex_state = 53}, - [684] = {.lex_state = 50}, - [685] = {.lex_state = 50}, - [686] = {.lex_state = 50}, - [687] = {.lex_state = 50}, - [688] = {.lex_state = 50}, - [689] = {.lex_state = 50}, - [690] = {.lex_state = 50}, - [691] = {.lex_state = 53}, - [692] = {.lex_state = 50}, - [693] = {.lex_state = 50}, - [694] = {.lex_state = 53}, - [695] = {.lex_state = 53}, - [696] = {.lex_state = 53}, - [697] = {.lex_state = 53}, - [698] = {.lex_state = 50}, - [699] = {.lex_state = 120}, - [700] = {.lex_state = 50}, - [701] = {.lex_state = 51}, - [702] = {.lex_state = 50}, - [703] = {.lex_state = 120}, - [704] = {.lex_state = 50}, - [705] = {.lex_state = 50}, - [706] = {.lex_state = 51}, - [707] = {.lex_state = 50}, - [708] = {.lex_state = 50}, - [709] = {.lex_state = 51}, - [710] = {.lex_state = 53}, - [711] = {.lex_state = 53}, - [712] = {.lex_state = 53}, - [713] = {.lex_state = 53}, - [714] = {.lex_state = 49}, - [715] = {.lex_state = 53}, - [716] = {.lex_state = 53}, - [717] = {.lex_state = 53}, - [718] = {.lex_state = 49}, - [719] = {.lex_state = 49}, - [720] = {.lex_state = 53}, - [721] = {.lex_state = 53}, - [722] = {.lex_state = 53}, - [723] = {.lex_state = 53}, - [724] = {.lex_state = 53}, - [725] = {.lex_state = 53}, - [726] = {.lex_state = 53}, - [727] = {.lex_state = 53}, - [728] = {.lex_state = 53}, - [729] = {.lex_state = 53}, - [730] = {.lex_state = 53}, - [731] = {.lex_state = 53}, - [732] = {.lex_state = 53}, - [733] = {.lex_state = 53}, - [734] = {.lex_state = 53}, - [735] = {.lex_state = 53}, - [736] = {.lex_state = 53}, - [737] = {.lex_state = 53}, - [738] = {.lex_state = 53}, - [739] = {.lex_state = 53}, - [740] = {.lex_state = 53}, - [741] = {.lex_state = 53}, - [742] = {.lex_state = 53}, - [743] = {.lex_state = 53}, - [744] = {.lex_state = 53}, - [745] = {.lex_state = 53}, - [746] = {.lex_state = 53}, - [747] = {.lex_state = 53}, - [748] = {.lex_state = 53}, - [749] = {.lex_state = 53}, - [750] = {.lex_state = 53}, - [751] = {.lex_state = 53}, - [752] = {.lex_state = 53}, - [753] = {.lex_state = 53}, - [754] = {.lex_state = 53}, - [755] = {.lex_state = 53}, - [756] = {.lex_state = 53}, - [757] = {.lex_state = 53}, - [758] = {.lex_state = 53}, - [759] = {.lex_state = 53}, - [760] = {.lex_state = 53}, - [761] = {.lex_state = 53}, - [762] = {.lex_state = 53}, - [763] = {.lex_state = 53}, - [764] = {.lex_state = 53}, - [765] = {.lex_state = 53}, - [766] = {.lex_state = 53}, - [767] = {.lex_state = 53}, - [768] = {.lex_state = 53}, - [769] = {.lex_state = 53}, - [770] = {.lex_state = 53}, - [771] = {.lex_state = 53}, - [772] = {.lex_state = 53}, - [773] = {.lex_state = 53}, - [774] = {.lex_state = 53}, - [775] = {.lex_state = 53}, - [776] = {.lex_state = 53}, - [777] = {.lex_state = 53}, - [778] = {.lex_state = 53}, - [779] = {.lex_state = 53}, - [780] = {.lex_state = 53}, - [781] = {.lex_state = 53}, - [782] = {.lex_state = 53}, - [783] = {.lex_state = 53}, - [784] = {.lex_state = 53}, - [785] = {.lex_state = 53}, - [786] = {.lex_state = 53}, - [787] = {.lex_state = 53}, - [788] = {.lex_state = 49}, - [789] = {.lex_state = 53}, - [790] = {.lex_state = 53}, - [791] = {.lex_state = 53}, - [792] = {.lex_state = 49}, - [793] = {.lex_state = 53}, - [794] = {.lex_state = 53}, - [795] = {.lex_state = 53}, - [796] = {.lex_state = 49}, - [797] = {.lex_state = 53}, - [798] = {.lex_state = 53}, - [799] = {.lex_state = 49}, - [800] = {.lex_state = 53}, - [801] = {.lex_state = 49}, - [802] = {.lex_state = 53}, - [803] = {.lex_state = 53}, - [804] = {.lex_state = 49}, - [805] = {.lex_state = 53}, - [806] = {.lex_state = 53}, - [807] = {.lex_state = 53}, - [808] = {.lex_state = 53}, - [809] = {.lex_state = 53}, - [810] = {.lex_state = 53}, - [811] = {.lex_state = 53}, - [812] = {.lex_state = 53}, - [813] = {.lex_state = 53}, - [814] = {.lex_state = 53}, - [815] = {.lex_state = 53}, - [816] = {.lex_state = 53}, - [817] = {.lex_state = 53}, - [818] = {.lex_state = 53}, - [819] = {.lex_state = 53}, - [820] = {.lex_state = 53}, - [821] = {.lex_state = 53}, - [822] = {.lex_state = 53}, - [823] = {.lex_state = 50}, - [824] = {.lex_state = 50}, - [825] = {.lex_state = 50}, - [826] = {.lex_state = 50}, - [827] = {.lex_state = 53}, - [828] = {.lex_state = 50}, - [829] = {.lex_state = 50}, - [830] = {.lex_state = 50}, - [831] = {.lex_state = 50}, - [832] = {.lex_state = 50}, - [833] = {.lex_state = 50}, - [834] = {.lex_state = 50}, - [835] = {.lex_state = 50}, - [836] = {.lex_state = 53}, - [837] = {.lex_state = 53}, - [838] = {.lex_state = 53}, - [839] = {.lex_state = 53}, - [840] = {.lex_state = 49}, - [841] = {.lex_state = 53}, - [842] = {.lex_state = 50}, - [843] = {.lex_state = 53}, - [844] = {.lex_state = 53}, - [845] = {.lex_state = 50}, - [846] = {.lex_state = 53}, - [847] = {.lex_state = 53}, - [848] = {.lex_state = 53}, - [849] = {.lex_state = 53}, - [850] = {.lex_state = 49}, - [851] = {.lex_state = 57}, - [852] = {.lex_state = 57}, - [853] = {.lex_state = 53}, - [854] = {.lex_state = 57}, - [855] = {.lex_state = 57}, - [856] = {.lex_state = 57}, - [857] = {.lex_state = 57}, - [858] = {.lex_state = 52}, - [859] = {.lex_state = 57}, - [860] = {.lex_state = 52}, - [861] = {.lex_state = 57}, - [862] = {.lex_state = 52}, - [863] = {.lex_state = 52}, - [864] = {.lex_state = 52}, - [865] = {.lex_state = 52}, - [866] = {.lex_state = 52}, - [867] = {.lex_state = 52}, - [868] = {.lex_state = 49}, - [869] = {.lex_state = 49}, - [870] = {.lex_state = 57}, - [871] = {.lex_state = 52}, - [872] = {.lex_state = 57}, - [873] = {.lex_state = 57}, - [874] = {.lex_state = 52}, - [875] = {.lex_state = 52}, - [876] = {.lex_state = 53}, - [877] = {.lex_state = 52}, - [878] = {.lex_state = 49}, - [879] = {.lex_state = 53}, - [880] = {.lex_state = 57}, - [881] = {.lex_state = 57}, - [882] = {.lex_state = 52}, - [883] = {.lex_state = 57}, - [884] = {.lex_state = 57}, - [885] = {.lex_state = 57}, - [886] = {.lex_state = 57}, - [887] = {.lex_state = 52}, - [888] = {.lex_state = 52}, - [889] = {.lex_state = 57}, - [890] = {.lex_state = 52}, - [891] = {.lex_state = 52}, - [892] = {.lex_state = 52}, - [893] = {.lex_state = 53}, - [894] = {.lex_state = 53}, - [895] = {.lex_state = 49}, - [896] = {.lex_state = 49}, - [897] = {.lex_state = 53}, - [898] = {.lex_state = 49}, - [899] = {.lex_state = 49}, - [900] = {.lex_state = 49}, - [901] = {.lex_state = 49}, - [902] = {.lex_state = 49}, - [903] = {.lex_state = 49}, - [904] = {.lex_state = 49}, - [905] = {.lex_state = 49}, - [906] = {.lex_state = 49}, - [907] = {.lex_state = 49}, - [908] = {.lex_state = 53}, - [909] = {.lex_state = 49}, - [910] = {.lex_state = 49}, - [911] = {.lex_state = 49}, - [912] = {.lex_state = 49}, - [913] = {.lex_state = 49}, - [914] = {.lex_state = 49}, - [915] = {.lex_state = 49}, - [916] = {.lex_state = 53}, - [917] = {.lex_state = 53}, - [918] = {.lex_state = 120}, - [919] = {.lex_state = 120}, - [920] = {.lex_state = 120}, - [921] = {.lex_state = 120}, - [922] = {.lex_state = 120}, - [923] = {.lex_state = 53}, - [924] = {.lex_state = 120}, - [925] = {.lex_state = 49}, - [926] = {.lex_state = 120}, - [927] = {.lex_state = 49}, - [928] = {.lex_state = 120}, - [929] = {.lex_state = 120}, - [930] = {.lex_state = 120}, - [931] = {.lex_state = 49}, - [932] = {.lex_state = 49}, - [933] = {.lex_state = 53}, - [934] = {.lex_state = 53}, - [935] = {.lex_state = 49}, - [936] = {.lex_state = 53}, - [937] = {.lex_state = 53}, - [938] = {.lex_state = 53}, - [939] = {.lex_state = 53}, - [940] = {.lex_state = 53}, - [941] = {.lex_state = 53}, - [942] = {.lex_state = 53}, - [943] = {.lex_state = 53}, - [944] = {.lex_state = 53}, - [945] = {.lex_state = 53}, - [946] = {.lex_state = 53}, - [947] = {.lex_state = 53}, - [948] = {.lex_state = 53}, - [949] = {.lex_state = 53}, - [950] = {.lex_state = 53}, - [951] = {.lex_state = 53}, - [952] = {.lex_state = 53}, - [953] = {.lex_state = 53}, - [954] = {.lex_state = 53}, - [955] = {.lex_state = 53}, - [956] = {.lex_state = 53}, - [957] = {.lex_state = 53}, - [958] = {.lex_state = 53}, - [959] = {.lex_state = 53}, - [960] = {.lex_state = 53}, - [961] = {.lex_state = 53}, - [962] = {.lex_state = 53}, - [963] = {.lex_state = 53}, - [964] = {.lex_state = 53}, - [965] = {.lex_state = 53}, - [966] = {.lex_state = 53}, - [967] = {.lex_state = 53}, - [968] = {.lex_state = 50}, - [969] = {.lex_state = 53}, - [970] = {.lex_state = 50}, - [971] = {.lex_state = 50}, - [972] = {.lex_state = 50}, - [973] = {.lex_state = 50}, - [974] = {.lex_state = 50}, - [975] = {.lex_state = 50}, - [976] = {.lex_state = 50}, - [977] = {.lex_state = 50}, - [978] = {.lex_state = 50}, - [979] = {.lex_state = 50}, - [980] = {.lex_state = 50}, - [981] = {.lex_state = 50}, - [982] = {.lex_state = 53}, - [983] = {.lex_state = 53}, - [984] = {.lex_state = 53}, - [985] = {.lex_state = 53}, - [986] = {.lex_state = 53}, - [987] = {.lex_state = 50}, - [988] = {.lex_state = 53}, - [989] = {.lex_state = 53}, - [990] = {.lex_state = 53}, - [991] = {.lex_state = 53}, - [992] = {.lex_state = 53}, - [993] = {.lex_state = 53}, - [994] = {.lex_state = 53}, - [995] = {.lex_state = 53}, - [996] = {.lex_state = 53}, - [997] = {.lex_state = 53}, - [998] = {.lex_state = 53}, - [999] = {.lex_state = 52}, - [1000] = {.lex_state = 52}, - [1001] = {.lex_state = 53}, - [1002] = {.lex_state = 53}, - [1003] = {.lex_state = 53}, - [1004] = {.lex_state = 52}, - [1005] = {.lex_state = 53}, - [1006] = {.lex_state = 53}, - [1007] = {.lex_state = 53}, - [1008] = {.lex_state = 53}, - [1009] = {.lex_state = 53}, - [1010] = {.lex_state = 53}, - [1011] = {.lex_state = 53}, + [1] = {.lex_state = 123, .reserved_word_set_id = 1}, + [2] = {.lex_state = 48, .reserved_word_set_id = 1}, + [3] = {.lex_state = 48, .reserved_word_set_id = 1}, + [4] = {.lex_state = 48, .reserved_word_set_id = 1}, + [5] = {.lex_state = 48, .reserved_word_set_id = 1}, + [6] = {.lex_state = 48, .reserved_word_set_id = 1}, + [7] = {.lex_state = 48, .reserved_word_set_id = 1}, + [8] = {.lex_state = 48, .reserved_word_set_id = 1}, + [9] = {.lex_state = 48, .reserved_word_set_id = 1}, + [10] = {.lex_state = 48, .reserved_word_set_id = 1}, + [11] = {.lex_state = 48, .reserved_word_set_id = 1}, + [12] = {.lex_state = 48, .reserved_word_set_id = 1}, + [13] = {.lex_state = 48, .reserved_word_set_id = 1}, + [14] = {.lex_state = 48, .reserved_word_set_id = 1}, + [15] = {.lex_state = 48, .reserved_word_set_id = 1}, + [16] = {.lex_state = 48, .reserved_word_set_id = 1}, + [17] = {.lex_state = 48, .reserved_word_set_id = 1}, + [18] = {.lex_state = 48, .reserved_word_set_id = 1}, + [19] = {.lex_state = 48, .reserved_word_set_id = 1}, + [20] = {.lex_state = 48, .reserved_word_set_id = 1}, + [21] = {.lex_state = 48, .reserved_word_set_id = 1}, + [22] = {.lex_state = 48}, + [23] = {.lex_state = 123, .reserved_word_set_id = 1}, + [24] = {.lex_state = 50, .reserved_word_set_id = 1}, + [25] = {.lex_state = 123, .reserved_word_set_id = 1}, + [26] = {.lex_state = 123, .reserved_word_set_id = 2}, + [27] = {.lex_state = 123, .reserved_word_set_id = 1}, + [28] = {.lex_state = 123, .reserved_word_set_id = 2}, + [29] = {.lex_state = 50}, + [30] = {.lex_state = 123, .reserved_word_set_id = 2}, + [31] = {.lex_state = 123, .reserved_word_set_id = 1}, + [32] = {.lex_state = 123, .reserved_word_set_id = 1}, + [33] = {.lex_state = 123, .reserved_word_set_id = 1}, + [34] = {.lex_state = 123, .reserved_word_set_id = 2}, + [35] = {.lex_state = 123, .reserved_word_set_id = 2}, + [36] = {.lex_state = 123, .reserved_word_set_id = 2}, + [37] = {.lex_state = 123}, + [38] = {.lex_state = 50, .reserved_word_set_id = 1}, + [39] = {.lex_state = 123, .reserved_word_set_id = 1}, + [40] = {.lex_state = 123, .reserved_word_set_id = 2}, + [41] = {.lex_state = 123, .reserved_word_set_id = 1}, + [42] = {.lex_state = 123, .reserved_word_set_id = 2}, + [43] = {.lex_state = 123, .reserved_word_set_id = 1}, + [44] = {.lex_state = 123}, + [45] = {.lex_state = 48}, + [46] = {.lex_state = 48}, + [47] = {.lex_state = 48}, + [48] = {.lex_state = 48}, + [49] = {.lex_state = 48}, + [50] = {.lex_state = 48}, + [51] = {.lex_state = 48}, + [52] = {.lex_state = 48}, + [53] = {.lex_state = 48}, + [54] = {.lex_state = 47, .reserved_word_set_id = 3}, + [55] = {.lex_state = 47, .reserved_word_set_id = 3}, + [56] = {.lex_state = 48}, + [57] = {.lex_state = 47, .reserved_word_set_id = 3}, + [58] = {.lex_state = 47, .reserved_word_set_id = 3}, + [59] = {.lex_state = 123}, + [60] = {.lex_state = 50}, + [61] = {.lex_state = 50}, + [62] = {.lex_state = 50}, + [63] = {.lex_state = 50}, + [64] = {.lex_state = 123}, + [65] = {.lex_state = 123}, + [66] = {.lex_state = 123}, + [67] = {.lex_state = 123}, + [68] = {.lex_state = 123}, + [69] = {.lex_state = 123}, + [70] = {.lex_state = 123}, + [71] = {.lex_state = 123}, + [72] = {.lex_state = 123}, + [73] = {.lex_state = 50}, + [74] = {.lex_state = 123}, + [75] = {.lex_state = 123}, + [76] = {.lex_state = 123}, + [77] = {.lex_state = 123}, + [78] = {.lex_state = 50}, + [79] = {.lex_state = 123}, + [80] = {.lex_state = 50}, + [81] = {.lex_state = 50}, + [82] = {.lex_state = 50}, + [83] = {.lex_state = 50}, + [84] = {.lex_state = 123, .reserved_word_set_id = 4}, + [85] = {.lex_state = 123, .reserved_word_set_id = 1}, + [86] = {.lex_state = 123, .reserved_word_set_id = 1}, + [87] = {.lex_state = 123, .reserved_word_set_id = 1}, + [88] = {.lex_state = 123, .reserved_word_set_id = 1}, + [89] = {.lex_state = 123, .reserved_word_set_id = 1}, + [90] = {.lex_state = 123, .reserved_word_set_id = 1}, + [91] = {.lex_state = 123, .reserved_word_set_id = 5}, + [92] = {.lex_state = 123, .reserved_word_set_id = 4}, + [93] = {.lex_state = 123, .reserved_word_set_id = 5}, + [94] = {.lex_state = 123, .reserved_word_set_id = 4}, + [95] = {.lex_state = 123, .reserved_word_set_id = 4}, + [96] = {.lex_state = 123, .reserved_word_set_id = 1}, + [97] = {.lex_state = 123, .reserved_word_set_id = 4}, + [98] = {.lex_state = 123, .reserved_word_set_id = 1}, + [99] = {.lex_state = 47, .reserved_word_set_id = 6}, + [100] = {.lex_state = 47, .reserved_word_set_id = 6}, + [101] = {.lex_state = 47, .reserved_word_set_id = 6}, + [102] = {.lex_state = 47, .reserved_word_set_id = 6}, + [103] = {.lex_state = 47, .reserved_word_set_id = 1}, + [104] = {.lex_state = 47, .reserved_word_set_id = 1}, + [105] = {.lex_state = 47, .reserved_word_set_id = 7}, + [106] = {.lex_state = 47, .reserved_word_set_id = 7}, + [107] = {.lex_state = 47, .reserved_word_set_id = 7}, + [108] = {.lex_state = 47, .reserved_word_set_id = 7}, + [109] = {.lex_state = 47, .reserved_word_set_id = 1}, + [110] = {.lex_state = 47, .reserved_word_set_id = 1}, + [111] = {.lex_state = 47, .reserved_word_set_id = 1}, + [112] = {.lex_state = 47, .reserved_word_set_id = 1}, + [113] = {.lex_state = 47, .reserved_word_set_id = 1}, + [114] = {.lex_state = 47, .reserved_word_set_id = 1}, + [115] = {.lex_state = 123, .reserved_word_set_id = 1}, + [116] = {.lex_state = 123, .reserved_word_set_id = 1}, + [117] = {.lex_state = 123, .reserved_word_set_id = 8}, + [118] = {.lex_state = 123, .reserved_word_set_id = 1}, + [119] = {.lex_state = 123, .reserved_word_set_id = 8}, + [120] = {.lex_state = 123, .reserved_word_set_id = 1}, + [121] = {.lex_state = 123, .reserved_word_set_id = 1}, + [122] = {.lex_state = 123, .reserved_word_set_id = 1}, + [123] = {.lex_state = 123, .reserved_word_set_id = 1}, + [124] = {.lex_state = 123, .reserved_word_set_id = 1}, + [125] = {.lex_state = 47, .reserved_word_set_id = 9}, + [126] = {.lex_state = 48}, + [127] = {.lex_state = 48}, + [128] = {.lex_state = 48}, + [129] = {.lex_state = 48}, + [130] = {.lex_state = 48}, + [131] = {.lex_state = 48}, + [132] = {.lex_state = 48}, + [133] = {.lex_state = 48}, + [134] = {.lex_state = 48}, + [135] = {.lex_state = 48}, + [136] = {.lex_state = 48}, + [137] = {.lex_state = 48}, + [138] = {.lex_state = 48}, + [139] = {.lex_state = 48}, + [140] = {.lex_state = 48}, + [141] = {.lex_state = 48}, + [142] = {.lex_state = 48}, + [143] = {.lex_state = 48}, + [144] = {.lex_state = 48}, + [145] = {.lex_state = 123}, + [146] = {.lex_state = 48}, + [147] = {.lex_state = 48}, + [148] = {.lex_state = 48}, + [149] = {.lex_state = 48}, + [150] = {.lex_state = 48}, + [151] = {.lex_state = 48}, + [152] = {.lex_state = 48}, + [153] = {.lex_state = 48}, + [154] = {.lex_state = 48}, + [155] = {.lex_state = 48}, + [156] = {.lex_state = 48}, + [157] = {.lex_state = 48}, + [158] = {.lex_state = 48}, + [159] = {.lex_state = 48}, + [160] = {.lex_state = 48}, + [161] = {.lex_state = 48}, + [162] = {.lex_state = 48}, + [163] = {.lex_state = 48}, + [164] = {.lex_state = 48}, + [165] = {.lex_state = 123}, + [166] = {.lex_state = 48}, + [167] = {.lex_state = 48}, + [168] = {.lex_state = 48}, + [169] = {.lex_state = 48}, + [170] = {.lex_state = 48}, + [171] = {.lex_state = 48}, + [172] = {.lex_state = 48}, + [173] = {.lex_state = 48}, + [174] = {.lex_state = 48}, + [175] = {.lex_state = 48}, + [176] = {.lex_state = 48}, + [177] = {.lex_state = 48}, + [178] = {.lex_state = 48}, + [179] = {.lex_state = 48}, + [180] = {.lex_state = 48}, + [181] = {.lex_state = 48}, + [182] = {.lex_state = 48}, + [183] = {.lex_state = 48}, + [184] = {.lex_state = 48}, + [185] = {.lex_state = 48}, + [186] = {.lex_state = 48}, + [187] = {.lex_state = 48}, + [188] = {.lex_state = 48}, + [189] = {.lex_state = 47, .reserved_word_set_id = 1}, + [190] = {.lex_state = 48}, + [191] = {.lex_state = 48}, + [192] = {.lex_state = 48}, + [193] = {.lex_state = 48}, + [194] = {.lex_state = 48}, + [195] = {.lex_state = 48}, + [196] = {.lex_state = 50}, + [197] = {.lex_state = 123}, + [198] = {.lex_state = 123}, + [199] = {.lex_state = 50}, + [200] = {.lex_state = 123}, + [201] = {.lex_state = 123}, + [202] = {.lex_state = 123}, + [203] = {.lex_state = 123}, + [204] = {.lex_state = 123}, + [205] = {.lex_state = 123}, + [206] = {.lex_state = 123}, + [207] = {.lex_state = 123}, + [208] = {.lex_state = 123}, + [209] = {.lex_state = 123}, + [210] = {.lex_state = 123}, + [211] = {.lex_state = 123}, + [212] = {.lex_state = 123}, + [213] = {.lex_state = 123}, + [214] = {.lex_state = 123}, + [215] = {.lex_state = 123}, + [216] = {.lex_state = 123}, + [217] = {.lex_state = 123}, + [218] = {.lex_state = 123}, + [219] = {.lex_state = 50}, + [220] = {.lex_state = 50}, + [221] = {.lex_state = 50}, + [222] = {.lex_state = 50}, + [223] = {.lex_state = 50}, + [224] = {.lex_state = 50}, + [225] = {.lex_state = 50}, + [226] = {.lex_state = 50}, + [227] = {.lex_state = 50}, + [228] = {.lex_state = 50}, + [229] = {.lex_state = 123}, + [230] = {.lex_state = 50}, + [231] = {.lex_state = 50}, + [232] = {.lex_state = 50}, + [233] = {.lex_state = 50}, + [234] = {.lex_state = 50}, + [235] = {.lex_state = 50}, + [236] = {.lex_state = 50}, + [237] = {.lex_state = 50}, + [238] = {.lex_state = 123}, + [239] = {.lex_state = 50}, + [240] = {.lex_state = 50}, + [241] = {.lex_state = 50}, + [242] = {.lex_state = 50}, + [243] = {.lex_state = 50}, + [244] = {.lex_state = 50}, + [245] = {.lex_state = 50}, + [246] = {.lex_state = 50}, + [247] = {.lex_state = 123}, + [248] = {.lex_state = 123}, + [249] = {.lex_state = 123}, + [250] = {.lex_state = 123}, + [251] = {.lex_state = 123}, + [252] = {.lex_state = 50}, + [253] = {.lex_state = 50}, + [254] = {.lex_state = 123}, + [255] = {.lex_state = 50}, + [256] = {.lex_state = 50}, + [257] = {.lex_state = 50}, + [258] = {.lex_state = 50}, + [259] = {.lex_state = 50}, + [260] = {.lex_state = 50}, + [261] = {.lex_state = 50}, + [262] = {.lex_state = 50}, + [263] = {.lex_state = 123}, + [264] = {.lex_state = 123}, + [265] = {.lex_state = 123}, + [266] = {.lex_state = 123}, + [267] = {.lex_state = 123}, + [268] = {.lex_state = 123}, + [269] = {.lex_state = 123}, + [270] = {.lex_state = 123}, + [271] = {.lex_state = 123}, + [272] = {.lex_state = 123}, + [273] = {.lex_state = 123}, + [274] = {.lex_state = 123}, + [275] = {.lex_state = 123}, + [276] = {.lex_state = 123}, + [277] = {.lex_state = 123}, + [278] = {.lex_state = 123}, + [279] = {.lex_state = 123}, + [280] = {.lex_state = 123}, + [281] = {.lex_state = 123}, + [282] = {.lex_state = 123}, + [283] = {.lex_state = 123}, + [284] = {.lex_state = 123}, + [285] = {.lex_state = 123}, + [286] = {.lex_state = 123}, + [287] = {.lex_state = 123}, + [288] = {.lex_state = 123}, + [289] = {.lex_state = 123}, + [290] = {.lex_state = 123}, + [291] = {.lex_state = 123}, + [292] = {.lex_state = 123}, + [293] = {.lex_state = 123}, + [294] = {.lex_state = 123}, + [295] = {.lex_state = 123}, + [296] = {.lex_state = 123}, + [297] = {.lex_state = 123}, + [298] = {.lex_state = 123}, + [299] = {.lex_state = 123}, + [300] = {.lex_state = 123}, + [301] = {.lex_state = 123}, + [302] = {.lex_state = 123}, + [303] = {.lex_state = 123}, + [304] = {.lex_state = 123}, + [305] = {.lex_state = 123}, + [306] = {.lex_state = 123}, + [307] = {.lex_state = 123}, + [308] = {.lex_state = 123}, + [309] = {.lex_state = 123}, + [310] = {.lex_state = 123}, + [311] = {.lex_state = 123}, + [312] = {.lex_state = 50}, + [313] = {.lex_state = 123}, + [314] = {.lex_state = 50}, + [315] = {.lex_state = 50}, + [316] = {.lex_state = 50}, + [317] = {.lex_state = 50}, + [318] = {.lex_state = 123}, + [319] = {.lex_state = 50}, + [320] = {.lex_state = 50}, + [321] = {.lex_state = 50}, + [322] = {.lex_state = 123}, + [323] = {.lex_state = 50}, + [324] = {.lex_state = 123}, + [325] = {.lex_state = 47, .reserved_word_set_id = 10}, + [326] = {.lex_state = 123}, + [327] = {.lex_state = 123}, + [328] = {.lex_state = 123}, + [329] = {.lex_state = 123}, + [330] = {.lex_state = 123}, + [331] = {.lex_state = 50}, + [332] = {.lex_state = 50}, + [333] = {.lex_state = 123}, + [334] = {.lex_state = 123}, + [335] = {.lex_state = 50}, + [336] = {.lex_state = 123}, + [337] = {.lex_state = 50}, + [338] = {.lex_state = 123}, + [339] = {.lex_state = 50}, + [340] = {.lex_state = 50}, + [341] = {.lex_state = 123}, + [342] = {.lex_state = 123}, + [343] = {.lex_state = 123}, + [344] = {.lex_state = 123}, + [345] = {.lex_state = 123}, + [346] = {.lex_state = 123}, + [347] = {.lex_state = 50}, + [348] = {.lex_state = 50}, + [349] = {.lex_state = 50}, + [350] = {.lex_state = 50}, + [351] = {.lex_state = 50}, + [352] = {.lex_state = 50}, + [353] = {.lex_state = 50}, + [354] = {.lex_state = 50}, + [355] = {.lex_state = 50}, + [356] = {.lex_state = 50}, + [357] = {.lex_state = 123}, + [358] = {.lex_state = 123}, + [359] = {.lex_state = 123}, + [360] = {.lex_state = 123}, + [361] = {.lex_state = 50}, + [362] = {.lex_state = 50}, + [363] = {.lex_state = 50}, + [364] = {.lex_state = 123}, + [365] = {.lex_state = 123}, + [366] = {.lex_state = 123}, + [367] = {.lex_state = 50}, + [368] = {.lex_state = 123}, + [369] = {.lex_state = 123}, + [370] = {.lex_state = 47, .reserved_word_set_id = 10}, + [371] = {.lex_state = 123, .reserved_word_set_id = 1}, + [372] = {.lex_state = 123, .reserved_word_set_id = 1}, + [373] = {.lex_state = 123}, + [374] = {.lex_state = 123, .reserved_word_set_id = 1}, + [375] = {.lex_state = 123}, + [376] = {.lex_state = 123, .reserved_word_set_id = 1}, + [377] = {.lex_state = 52, .reserved_word_set_id = 11}, + [378] = {.lex_state = 123, .reserved_word_set_id = 1}, + [379] = {.lex_state = 123}, + [380] = {.lex_state = 123, .reserved_word_set_id = 1}, + [381] = {.lex_state = 123, .reserved_word_set_id = 1}, + [382] = {.lex_state = 123, .reserved_word_set_id = 1}, + [383] = {.lex_state = 123, .reserved_word_set_id = 1}, + [384] = {.lex_state = 123}, + [385] = {.lex_state = 123, .reserved_word_set_id = 1}, + [386] = {.lex_state = 123, .reserved_word_set_id = 1}, + [387] = {.lex_state = 123, .reserved_word_set_id = 1}, + [388] = {.lex_state = 123}, + [389] = {.lex_state = 123, .reserved_word_set_id = 12}, + [390] = {.lex_state = 123, .reserved_word_set_id = 1}, + [391] = {.lex_state = 123}, + [392] = {.lex_state = 123}, + [393] = {.lex_state = 123, .reserved_word_set_id = 1}, + [394] = {.lex_state = 123}, + [395] = {.lex_state = 123, .reserved_word_set_id = 1}, + [396] = {.lex_state = 123, .reserved_word_set_id = 12}, + [397] = {.lex_state = 123, .reserved_word_set_id = 1}, + [398] = {.lex_state = 123, .reserved_word_set_id = 1}, + [399] = {.lex_state = 123, .reserved_word_set_id = 1}, + [400] = {.lex_state = 123}, + [401] = {.lex_state = 123}, + [402] = {.lex_state = 123}, + [403] = {.lex_state = 123, .reserved_word_set_id = 1}, + [404] = {.lex_state = 123, .reserved_word_set_id = 1}, + [405] = {.lex_state = 123, .reserved_word_set_id = 1}, + [406] = {.lex_state = 123, .reserved_word_set_id = 1}, + [407] = {.lex_state = 123, .reserved_word_set_id = 1}, + [408] = {.lex_state = 123, .reserved_word_set_id = 1}, + [409] = {.lex_state = 123}, + [410] = {.lex_state = 123, .reserved_word_set_id = 1}, + [411] = {.lex_state = 123}, + [412] = {.lex_state = 123, .reserved_word_set_id = 1}, + [413] = {.lex_state = 123, .reserved_word_set_id = 1}, + [414] = {.lex_state = 123}, + [415] = {.lex_state = 123}, + [416] = {.lex_state = 123}, + [417] = {.lex_state = 123, .reserved_word_set_id = 12}, + [418] = {.lex_state = 123}, + [419] = {.lex_state = 123, .reserved_word_set_id = 1}, + [420] = {.lex_state = 123, .reserved_word_set_id = 1}, + [421] = {.lex_state = 123, .reserved_word_set_id = 12}, + [422] = {.lex_state = 123}, + [423] = {.lex_state = 123, .reserved_word_set_id = 1}, + [424] = {.lex_state = 123}, + [425] = {.lex_state = 123}, + [426] = {.lex_state = 123, .reserved_word_set_id = 1}, + [427] = {.lex_state = 123}, + [428] = {.lex_state = 123, .reserved_word_set_id = 1}, + [429] = {.lex_state = 123}, + [430] = {.lex_state = 123}, + [431] = {.lex_state = 123, .reserved_word_set_id = 12}, + [432] = {.lex_state = 123}, + [433] = {.lex_state = 123, .reserved_word_set_id = 1}, + [434] = {.lex_state = 123}, + [435] = {.lex_state = 123, .reserved_word_set_id = 1}, + [436] = {.lex_state = 123, .reserved_word_set_id = 12}, + [437] = {.lex_state = 123, .reserved_word_set_id = 1}, + [438] = {.lex_state = 123, .reserved_word_set_id = 12}, + [439] = {.lex_state = 123, .reserved_word_set_id = 1}, + [440] = {.lex_state = 123, .reserved_word_set_id = 12}, + [441] = {.lex_state = 123, .reserved_word_set_id = 1}, + [442] = {.lex_state = 123, .reserved_word_set_id = 12}, + [443] = {.lex_state = 123, .reserved_word_set_id = 12}, + [444] = {.lex_state = 123, .reserved_word_set_id = 12}, + [445] = {.lex_state = 123, .reserved_word_set_id = 1}, + [446] = {.lex_state = 123}, + [447] = {.lex_state = 123, .reserved_word_set_id = 1}, + [448] = {.lex_state = 123, .reserved_word_set_id = 1}, + [449] = {.lex_state = 123, .reserved_word_set_id = 1}, + [450] = {.lex_state = 123, .reserved_word_set_id = 1}, + [451] = {.lex_state = 123, .reserved_word_set_id = 12}, + [452] = {.lex_state = 123}, + [453] = {.lex_state = 47, .reserved_word_set_id = 10}, + [454] = {.lex_state = 123, .reserved_word_set_id = 12}, + [455] = {.lex_state = 123}, + [456] = {.lex_state = 52, .reserved_word_set_id = 11}, + [457] = {.lex_state = 123}, + [458] = {.lex_state = 52, .reserved_word_set_id = 11}, + [459] = {.lex_state = 123, .reserved_word_set_id = 1}, + [460] = {.lex_state = 52, .reserved_word_set_id = 11}, + [461] = {.lex_state = 123, .reserved_word_set_id = 1}, + [462] = {.lex_state = 123, .reserved_word_set_id = 1}, + [463] = {.lex_state = 123, .reserved_word_set_id = 1}, + [464] = {.lex_state = 123, .reserved_word_set_id = 1}, + [465] = {.lex_state = 123, .reserved_word_set_id = 1}, + [466] = {.lex_state = 47, .reserved_word_set_id = 10}, + [467] = {.lex_state = 47, .reserved_word_set_id = 10}, + [468] = {.lex_state = 52}, + [469] = {.lex_state = 47, .reserved_word_set_id = 10}, + [470] = {.lex_state = 123, .reserved_word_set_id = 9}, + [471] = {.lex_state = 123, .reserved_word_set_id = 9}, + [472] = {.lex_state = 123, .reserved_word_set_id = 1}, + [473] = {.lex_state = 123, .reserved_word_set_id = 1}, + [474] = {.lex_state = 123, .reserved_word_set_id = 9}, + [475] = {.lex_state = 123, .reserved_word_set_id = 1}, + [476] = {.lex_state = 123, .reserved_word_set_id = 9}, + [477] = {.lex_state = 123, .reserved_word_set_id = 9}, + [478] = {.lex_state = 123, .reserved_word_set_id = 9}, + [479] = {.lex_state = 123, .reserved_word_set_id = 9}, + [480] = {.lex_state = 47, .reserved_word_set_id = 10}, + [481] = {.lex_state = 123, .reserved_word_set_id = 9}, + [482] = {.lex_state = 123, .reserved_word_set_id = 9}, + [483] = {.lex_state = 123, .reserved_word_set_id = 9}, + [484] = {.lex_state = 123, .reserved_word_set_id = 9}, + [485] = {.lex_state = 123, .reserved_word_set_id = 9}, + [486] = {.lex_state = 47, .reserved_word_set_id = 10}, + [487] = {.lex_state = 123, .reserved_word_set_id = 1}, + [488] = {.lex_state = 123, .reserved_word_set_id = 9}, + [489] = {.lex_state = 123, .reserved_word_set_id = 9}, + [490] = {.lex_state = 47, .reserved_word_set_id = 1}, + [491] = {.lex_state = 47, .reserved_word_set_id = 10}, + [492] = {.lex_state = 47, .reserved_word_set_id = 10}, + [493] = {.lex_state = 123, .reserved_word_set_id = 1}, + [494] = {.lex_state = 47, .reserved_word_set_id = 1}, + [495] = {.lex_state = 123, .reserved_word_set_id = 9}, + [496] = {.lex_state = 52}, + [497] = {.lex_state = 52}, + [498] = {.lex_state = 123, .reserved_word_set_id = 5}, + [499] = {.lex_state = 123, .reserved_word_set_id = 5}, + [500] = {.lex_state = 52, .reserved_word_set_id = 1}, + [501] = {.lex_state = 52, .reserved_word_set_id = 1}, + [502] = {.lex_state = 52, .reserved_word_set_id = 11}, + [503] = {.lex_state = 47, .reserved_word_set_id = 10}, + [504] = {.lex_state = 52, .reserved_word_set_id = 1}, + [505] = {.lex_state = 52, .reserved_word_set_id = 1}, + [506] = {.lex_state = 47, .reserved_word_set_id = 10}, + [507] = {.lex_state = 52}, + [508] = {.lex_state = 52, .reserved_word_set_id = 1}, + [509] = {.lex_state = 52, .reserved_word_set_id = 13}, + [510] = {.lex_state = 52, .reserved_word_set_id = 1}, + [511] = {.lex_state = 123, .reserved_word_set_id = 4}, + [512] = {.lex_state = 123, .reserved_word_set_id = 1}, + [513] = {.lex_state = 52, .reserved_word_set_id = 13}, + [514] = {.lex_state = 52, .reserved_word_set_id = 1}, + [515] = {.lex_state = 47, .reserved_word_set_id = 10}, + [516] = {.lex_state = 52}, + [517] = {.lex_state = 52, .reserved_word_set_id = 1}, + [518] = {.lex_state = 52, .reserved_word_set_id = 1}, + [519] = {.lex_state = 52, .reserved_word_set_id = 13}, + [520] = {.lex_state = 52, .reserved_word_set_id = 1}, + [521] = {.lex_state = 52, .reserved_word_set_id = 13}, + [522] = {.lex_state = 52, .reserved_word_set_id = 1}, + [523] = {.lex_state = 52, .reserved_word_set_id = 1}, + [524] = {.lex_state = 52, .reserved_word_set_id = 1}, + [525] = {.lex_state = 52, .reserved_word_set_id = 1}, + [526] = {.lex_state = 52, .reserved_word_set_id = 1}, + [527] = {.lex_state = 52}, + [528] = {.lex_state = 52, .reserved_word_set_id = 13}, + [529] = {.lex_state = 52, .reserved_word_set_id = 1}, + [530] = {.lex_state = 52, .reserved_word_set_id = 1}, + [531] = {.lex_state = 52}, + [532] = {.lex_state = 52}, + [533] = {.lex_state = 52}, + [534] = {.lex_state = 52}, + [535] = {.lex_state = 52, .reserved_word_set_id = 1}, + [536] = {.lex_state = 52, .reserved_word_set_id = 1}, + [537] = {.lex_state = 47, .reserved_word_set_id = 10}, + [538] = {.lex_state = 52, .reserved_word_set_id = 1}, + [539] = {.lex_state = 52, .reserved_word_set_id = 1}, + [540] = {.lex_state = 52, .reserved_word_set_id = 1}, + [541] = {.lex_state = 52}, + [542] = {.lex_state = 52, .reserved_word_set_id = 1}, + [543] = {.lex_state = 52}, + [544] = {.lex_state = 47, .reserved_word_set_id = 1}, + [545] = {.lex_state = 52}, + [546] = {.lex_state = 52}, + [547] = {.lex_state = 52}, + [548] = {.lex_state = 52}, + [549] = {.lex_state = 52}, + [550] = {.lex_state = 52}, + [551] = {.lex_state = 52}, + [552] = {.lex_state = 52}, + [553] = {.lex_state = 52}, + [554] = {.lex_state = 52}, + [555] = {.lex_state = 52}, + [556] = {.lex_state = 52}, + [557] = {.lex_state = 52}, + [558] = {.lex_state = 52}, + [559] = {.lex_state = 52}, + [560] = {.lex_state = 52}, + [561] = {.lex_state = 52}, + [562] = {.lex_state = 52}, + [563] = {.lex_state = 52}, + [564] = {.lex_state = 52}, + [565] = {.lex_state = 52}, + [566] = {.lex_state = 52}, + [567] = {.lex_state = 52}, + [568] = {.lex_state = 52}, + [569] = {.lex_state = 52}, + [570] = {.lex_state = 52, .reserved_word_set_id = 13}, + [571] = {.lex_state = 52}, + [572] = {.lex_state = 52}, + [573] = {.lex_state = 52}, + [574] = {.lex_state = 52}, + [575] = {.lex_state = 52}, + [576] = {.lex_state = 52}, + [577] = {.lex_state = 52}, + [578] = {.lex_state = 47, .reserved_word_set_id = 1}, + [579] = {.lex_state = 52}, + [580] = {.lex_state = 52, .reserved_word_set_id = 13}, + [581] = {.lex_state = 52}, + [582] = {.lex_state = 52}, + [583] = {.lex_state = 52, .reserved_word_set_id = 13}, + [584] = {.lex_state = 52}, + [585] = {.lex_state = 52}, + [586] = {.lex_state = 52}, + [587] = {.lex_state = 52, .reserved_word_set_id = 13}, + [588] = {.lex_state = 52}, + [589] = {.lex_state = 52}, + [590] = {.lex_state = 52}, + [591] = {.lex_state = 52}, + [592] = {.lex_state = 52}, + [593] = {.lex_state = 52}, + [594] = {.lex_state = 52}, + [595] = {.lex_state = 56, .reserved_word_set_id = 11}, + [596] = {.lex_state = 52}, + [597] = {.lex_state = 52}, + [598] = {.lex_state = 47, .reserved_word_set_id = 1}, + [599] = {.lex_state = 123, .reserved_word_set_id = 14}, + [600] = {.lex_state = 123, .reserved_word_set_id = 14}, + [601] = {.lex_state = 123, .reserved_word_set_id = 14}, + [602] = {.lex_state = 123, .reserved_word_set_id = 14}, + [603] = {.lex_state = 123, .reserved_word_set_id = 14}, + [604] = {.lex_state = 123, .reserved_word_set_id = 14}, + [605] = {.lex_state = 123, .reserved_word_set_id = 14}, + [606] = {.lex_state = 123, .reserved_word_set_id = 14}, + [607] = {.lex_state = 123, .reserved_word_set_id = 14}, + [608] = {.lex_state = 123, .reserved_word_set_id = 14}, + [609] = {.lex_state = 56, .reserved_word_set_id = 11}, + [610] = {.lex_state = 123, .reserved_word_set_id = 10}, + [611] = {.lex_state = 56, .reserved_word_set_id = 1}, + [612] = {.lex_state = 56, .reserved_word_set_id = 1}, + [613] = {.lex_state = 56, .reserved_word_set_id = 1}, + [614] = {.lex_state = 56, .reserved_word_set_id = 1}, + [615] = {.lex_state = 56, .reserved_word_set_id = 1}, + [616] = {.lex_state = 56, .reserved_word_set_id = 1}, + [617] = {.lex_state = 56, .reserved_word_set_id = 1}, + [618] = {.lex_state = 56, .reserved_word_set_id = 1}, + [619] = {.lex_state = 56, .reserved_word_set_id = 1}, + [620] = {.lex_state = 56, .reserved_word_set_id = 1}, + [621] = {.lex_state = 56, .reserved_word_set_id = 1}, + [622] = {.lex_state = 56, .reserved_word_set_id = 1}, + [623] = {.lex_state = 56, .reserved_word_set_id = 1}, + [624] = {.lex_state = 56, .reserved_word_set_id = 1}, + [625] = {.lex_state = 56, .reserved_word_set_id = 1}, + [626] = {.lex_state = 56, .reserved_word_set_id = 1}, + [627] = {.lex_state = 123, .reserved_word_set_id = 10}, + [628] = {.lex_state = 123, .reserved_word_set_id = 10}, + [629] = {.lex_state = 123, .reserved_word_set_id = 1}, + [630] = {.lex_state = 56}, + [631] = {.lex_state = 55, .reserved_word_set_id = 11}, + [632] = {.lex_state = 55}, + [633] = {.lex_state = 60, .reserved_word_set_id = 1}, + [634] = {.lex_state = 123, .reserved_word_set_id = 1}, + [635] = {.lex_state = 60}, + [636] = {.lex_state = 60, .reserved_word_set_id = 1}, + [637] = {.lex_state = 55, .reserved_word_set_id = 11}, + [638] = {.lex_state = 123, .reserved_word_set_id = 10}, + [639] = {.lex_state = 123, .reserved_word_set_id = 10}, + [640] = {.lex_state = 123, .reserved_word_set_id = 1}, + [641] = {.lex_state = 123, .reserved_word_set_id = 1}, + [642] = {.lex_state = 123, .reserved_word_set_id = 10}, + [643] = {.lex_state = 123, .reserved_word_set_id = 1}, + [644] = {.lex_state = 123, .reserved_word_set_id = 1}, + [645] = {.lex_state = 123, .reserved_word_set_id = 1}, + [646] = {.lex_state = 123, .reserved_word_set_id = 10}, + [647] = {.lex_state = 123, .reserved_word_set_id = 1}, + [648] = {.lex_state = 123, .reserved_word_set_id = 10}, + [649] = {.lex_state = 123, .reserved_word_set_id = 1}, + [650] = {.lex_state = 123, .reserved_word_set_id = 10}, + [651] = {.lex_state = 123, .reserved_word_set_id = 1}, + [652] = {.lex_state = 123, .reserved_word_set_id = 10}, + [653] = {.lex_state = 123, .reserved_word_set_id = 10}, + [654] = {.lex_state = 123, .reserved_word_set_id = 10}, + [655] = {.lex_state = 123, .reserved_word_set_id = 1}, + [656] = {.lex_state = 123, .reserved_word_set_id = 10}, + [657] = {.lex_state = 123, .reserved_word_set_id = 1}, + [658] = {.lex_state = 123, .reserved_word_set_id = 1}, + [659] = {.lex_state = 123, .reserved_word_set_id = 10}, + [660] = {.lex_state = 123, .reserved_word_set_id = 10}, + [661] = {.lex_state = 123, .reserved_word_set_id = 10}, + [662] = {.lex_state = 123, .reserved_word_set_id = 1}, + [663] = {.lex_state = 123, .reserved_word_set_id = 10}, + [664] = {.lex_state = 123, .reserved_word_set_id = 10}, + [665] = {.lex_state = 123, .reserved_word_set_id = 1}, + [666] = {.lex_state = 123, .reserved_word_set_id = 10}, + [667] = {.lex_state = 123, .reserved_word_set_id = 10}, + [668] = {.lex_state = 123, .reserved_word_set_id = 1}, + [669] = {.lex_state = 123, .reserved_word_set_id = 1}, + [670] = {.lex_state = 123, .reserved_word_set_id = 10}, + [671] = {.lex_state = 123, .reserved_word_set_id = 1}, + [672] = {.lex_state = 123, .reserved_word_set_id = 1}, + [673] = {.lex_state = 123, .reserved_word_set_id = 1}, + [674] = {.lex_state = 123, .reserved_word_set_id = 1}, + [675] = {.lex_state = 56, .reserved_word_set_id = 1}, + [676] = {.lex_state = 123, .reserved_word_set_id = 1}, + [677] = {.lex_state = 123, .reserved_word_set_id = 10}, + [678] = {.lex_state = 123, .reserved_word_set_id = 10}, + [679] = {.lex_state = 123, .reserved_word_set_id = 10}, + [680] = {.lex_state = 123, .reserved_word_set_id = 10}, + [681] = {.lex_state = 123, .reserved_word_set_id = 10}, + [682] = {.lex_state = 123, .reserved_word_set_id = 10}, + [683] = {.lex_state = 56, .reserved_word_set_id = 1}, + [684] = {.lex_state = 123, .reserved_word_set_id = 10}, + [685] = {.lex_state = 123, .reserved_word_set_id = 1}, + [686] = {.lex_state = 56, .reserved_word_set_id = 1}, + [687] = {.lex_state = 56, .reserved_word_set_id = 1}, + [688] = {.lex_state = 123, .reserved_word_set_id = 10}, + [689] = {.lex_state = 123, .reserved_word_set_id = 10}, + [690] = {.lex_state = 123, .reserved_word_set_id = 1}, + [691] = {.lex_state = 123, .reserved_word_set_id = 10}, + [692] = {.lex_state = 52}, + [693] = {.lex_state = 123, .reserved_word_set_id = 1}, + [694] = {.lex_state = 123, .reserved_word_set_id = 1}, + [695] = {.lex_state = 123, .reserved_word_set_id = 1}, + [696] = {.lex_state = 123, .reserved_word_set_id = 1}, + [697] = {.lex_state = 123, .reserved_word_set_id = 1}, + [698] = {.lex_state = 123, .reserved_word_set_id = 1}, + [699] = {.lex_state = 123, .reserved_word_set_id = 10}, + [700] = {.lex_state = 123, .reserved_word_set_id = 10}, + [701] = {.lex_state = 123, .reserved_word_set_id = 1}, + [702] = {.lex_state = 123, .reserved_word_set_id = 10}, + [703] = {.lex_state = 123, .reserved_word_set_id = 10}, + [704] = {.lex_state = 123, .reserved_word_set_id = 10}, + [705] = {.lex_state = 123, .reserved_word_set_id = 10}, + [706] = {.lex_state = 123, .reserved_word_set_id = 10}, + [707] = {.lex_state = 123, .reserved_word_set_id = 1}, + [708] = {.lex_state = 123, .reserved_word_set_id = 10}, + [709] = {.lex_state = 123, .reserved_word_set_id = 10}, + [710] = {.lex_state = 123, .reserved_word_set_id = 1}, + [711] = {.lex_state = 123, .reserved_word_set_id = 10}, + [712] = {.lex_state = 123, .reserved_word_set_id = 10}, + [713] = {.lex_state = 123, .reserved_word_set_id = 10}, + [714] = {.lex_state = 123, .reserved_word_set_id = 10}, + [715] = {.lex_state = 123, .reserved_word_set_id = 10}, + [716] = {.lex_state = 123, .reserved_word_set_id = 10}, + [717] = {.lex_state = 123, .reserved_word_set_id = 10}, + [718] = {.lex_state = 123, .reserved_word_set_id = 10}, + [719] = {.lex_state = 123, .reserved_word_set_id = 10}, + [720] = {.lex_state = 123, .reserved_word_set_id = 10}, + [721] = {.lex_state = 123, .reserved_word_set_id = 10}, + [722] = {.lex_state = 123, .reserved_word_set_id = 10}, + [723] = {.lex_state = 123, .reserved_word_set_id = 10}, + [724] = {.lex_state = 123, .reserved_word_set_id = 10}, + [725] = {.lex_state = 123, .reserved_word_set_id = 10}, + [726] = {.lex_state = 123, .reserved_word_set_id = 10}, + [727] = {.lex_state = 123, .reserved_word_set_id = 10}, + [728] = {.lex_state = 123, .reserved_word_set_id = 10}, + [729] = {.lex_state = 123, .reserved_word_set_id = 10}, + [730] = {.lex_state = 123, .reserved_word_set_id = 10}, + [731] = {.lex_state = 123, .reserved_word_set_id = 10}, + [732] = {.lex_state = 123, .reserved_word_set_id = 10}, + [733] = {.lex_state = 123, .reserved_word_set_id = 10}, + [734] = {.lex_state = 123, .reserved_word_set_id = 10}, + [735] = {.lex_state = 123, .reserved_word_set_id = 10}, + [736] = {.lex_state = 123, .reserved_word_set_id = 10}, + [737] = {.lex_state = 123, .reserved_word_set_id = 10}, + [738] = {.lex_state = 123, .reserved_word_set_id = 10}, + [739] = {.lex_state = 123, .reserved_word_set_id = 10}, + [740] = {.lex_state = 123, .reserved_word_set_id = 10}, + [741] = {.lex_state = 123, .reserved_word_set_id = 10}, + [742] = {.lex_state = 123, .reserved_word_set_id = 10}, + [743] = {.lex_state = 123, .reserved_word_set_id = 10}, + [744] = {.lex_state = 123, .reserved_word_set_id = 10}, + [745] = {.lex_state = 123, .reserved_word_set_id = 1}, + [746] = {.lex_state = 123, .reserved_word_set_id = 1}, + [747] = {.lex_state = 123, .reserved_word_set_id = 1}, + [748] = {.lex_state = 123, .reserved_word_set_id = 1}, + [749] = {.lex_state = 123, .reserved_word_set_id = 1}, + [750] = {.lex_state = 123, .reserved_word_set_id = 1}, + [751] = {.lex_state = 123, .reserved_word_set_id = 1}, + [752] = {.lex_state = 123, .reserved_word_set_id = 1}, + [753] = {.lex_state = 123, .reserved_word_set_id = 1}, + [754] = {.lex_state = 123, .reserved_word_set_id = 1}, + [755] = {.lex_state = 123, .reserved_word_set_id = 1}, + [756] = {.lex_state = 123, .reserved_word_set_id = 10}, + [757] = {.lex_state = 123, .reserved_word_set_id = 10}, + [758] = {.lex_state = 123, .reserved_word_set_id = 10}, + [759] = {.lex_state = 123, .reserved_word_set_id = 10}, + [760] = {.lex_state = 123, .reserved_word_set_id = 10}, + [761] = {.lex_state = 123, .reserved_word_set_id = 10}, + [762] = {.lex_state = 123, .reserved_word_set_id = 1}, + [763] = {.lex_state = 123, .reserved_word_set_id = 10}, + [764] = {.lex_state = 123, .reserved_word_set_id = 10}, + [765] = {.lex_state = 123, .reserved_word_set_id = 10}, + [766] = {.lex_state = 123, .reserved_word_set_id = 10}, + [767] = {.lex_state = 123, .reserved_word_set_id = 1}, + [768] = {.lex_state = 123, .reserved_word_set_id = 10}, + [769] = {.lex_state = 123, .reserved_word_set_id = 10}, + [770] = {.lex_state = 123, .reserved_word_set_id = 10}, + [771] = {.lex_state = 123, .reserved_word_set_id = 10}, + [772] = {.lex_state = 123, .reserved_word_set_id = 10}, + [773] = {.lex_state = 123, .reserved_word_set_id = 10}, + [774] = {.lex_state = 123, .reserved_word_set_id = 10}, + [775] = {.lex_state = 123, .reserved_word_set_id = 10}, + [776] = {.lex_state = 123, .reserved_word_set_id = 10}, + [777] = {.lex_state = 123, .reserved_word_set_id = 10}, + [778] = {.lex_state = 123, .reserved_word_set_id = 10}, + [779] = {.lex_state = 123, .reserved_word_set_id = 10}, + [780] = {.lex_state = 123, .reserved_word_set_id = 10}, + [781] = {.lex_state = 123, .reserved_word_set_id = 10}, + [782] = {.lex_state = 123, .reserved_word_set_id = 10}, + [783] = {.lex_state = 123, .reserved_word_set_id = 10}, + [784] = {.lex_state = 123, .reserved_word_set_id = 10}, + [785] = {.lex_state = 123, .reserved_word_set_id = 10}, + [786] = {.lex_state = 123, .reserved_word_set_id = 1}, + [787] = {.lex_state = 123, .reserved_word_set_id = 1}, + [788] = {.lex_state = 123, .reserved_word_set_id = 10}, + [789] = {.lex_state = 123, .reserved_word_set_id = 10}, + [790] = {.lex_state = 123, .reserved_word_set_id = 10}, + [791] = {.lex_state = 123, .reserved_word_set_id = 10}, + [792] = {.lex_state = 123, .reserved_word_set_id = 10}, + [793] = {.lex_state = 123, .reserved_word_set_id = 1}, + [794] = {.lex_state = 123, .reserved_word_set_id = 10}, + [795] = {.lex_state = 123, .reserved_word_set_id = 1}, + [796] = {.lex_state = 123, .reserved_word_set_id = 10}, + [797] = {.lex_state = 123, .reserved_word_set_id = 10}, + [798] = {.lex_state = 123, .reserved_word_set_id = 10}, + [799] = {.lex_state = 123, .reserved_word_set_id = 10}, + [800] = {.lex_state = 123, .reserved_word_set_id = 10}, + [801] = {.lex_state = 123, .reserved_word_set_id = 10}, + [802] = {.lex_state = 123, .reserved_word_set_id = 10}, + [803] = {.lex_state = 123, .reserved_word_set_id = 10}, + [804] = {.lex_state = 123, .reserved_word_set_id = 10}, + [805] = {.lex_state = 123, .reserved_word_set_id = 10}, + [806] = {.lex_state = 123, .reserved_word_set_id = 1}, + [807] = {.lex_state = 123, .reserved_word_set_id = 10}, + [808] = {.lex_state = 123, .reserved_word_set_id = 1}, + [809] = {.lex_state = 123, .reserved_word_set_id = 10}, + [810] = {.lex_state = 123, .reserved_word_set_id = 10}, + [811] = {.lex_state = 123, .reserved_word_set_id = 10}, + [812] = {.lex_state = 123, .reserved_word_set_id = 10}, + [813] = {.lex_state = 123, .reserved_word_set_id = 10}, + [814] = {.lex_state = 123, .reserved_word_set_id = 10}, + [815] = {.lex_state = 123, .reserved_word_set_id = 10}, + [816] = {.lex_state = 123, .reserved_word_set_id = 10}, + [817] = {.lex_state = 123, .reserved_word_set_id = 10}, + [818] = {.lex_state = 123, .reserved_word_set_id = 10}, + [819] = {.lex_state = 123, .reserved_word_set_id = 10}, + [820] = {.lex_state = 123, .reserved_word_set_id = 10}, + [821] = {.lex_state = 123, .reserved_word_set_id = 10}, + [822] = {.lex_state = 123, .reserved_word_set_id = 10}, + [823] = {.lex_state = 123, .reserved_word_set_id = 10}, + [824] = {.lex_state = 123, .reserved_word_set_id = 10}, + [825] = {.lex_state = 123, .reserved_word_set_id = 10}, + [826] = {.lex_state = 123, .reserved_word_set_id = 10}, + [827] = {.lex_state = 123, .reserved_word_set_id = 10}, + [828] = {.lex_state = 123, .reserved_word_set_id = 1}, + [829] = {.lex_state = 123, .reserved_word_set_id = 10}, + [830] = {.lex_state = 123, .reserved_word_set_id = 10}, + [831] = {.lex_state = 123, .reserved_word_set_id = 1}, + [832] = {.lex_state = 123, .reserved_word_set_id = 1}, + [833] = {.lex_state = 123, .reserved_word_set_id = 1}, + [834] = {.lex_state = 123, .reserved_word_set_id = 1}, + [835] = {.lex_state = 123, .reserved_word_set_id = 1}, + [836] = {.lex_state = 123, .reserved_word_set_id = 10}, + [837] = {.lex_state = 123, .reserved_word_set_id = 1}, + [838] = {.lex_state = 123, .reserved_word_set_id = 10}, + [839] = {.lex_state = 123, .reserved_word_set_id = 10}, + [840] = {.lex_state = 123, .reserved_word_set_id = 10}, + [841] = {.lex_state = 123, .reserved_word_set_id = 10}, + [842] = {.lex_state = 123, .reserved_word_set_id = 10}, + [843] = {.lex_state = 123, .reserved_word_set_id = 1}, + [844] = {.lex_state = 123, .reserved_word_set_id = 10}, + [845] = {.lex_state = 123, .reserved_word_set_id = 1}, + [846] = {.lex_state = 123, .reserved_word_set_id = 1}, + [847] = {.lex_state = 123, .reserved_word_set_id = 10}, + [848] = {.lex_state = 123, .reserved_word_set_id = 1}, + [849] = {.lex_state = 123, .reserved_word_set_id = 10}, + [850] = {.lex_state = 123, .reserved_word_set_id = 1}, + [851] = {.lex_state = 123, .reserved_word_set_id = 1}, + [852] = {.lex_state = 123, .reserved_word_set_id = 10}, + [853] = {.lex_state = 52, .reserved_word_set_id = 1}, + [854] = {.lex_state = 52, .reserved_word_set_id = 1}, + [855] = {.lex_state = 52, .reserved_word_set_id = 1}, + [856] = {.lex_state = 56, .reserved_word_set_id = 11}, + [857] = {.lex_state = 52, .reserved_word_set_id = 1}, + [858] = {.lex_state = 56, .reserved_word_set_id = 11}, + [859] = {.lex_state = 52, .reserved_word_set_id = 1}, + [860] = {.lex_state = 53, .reserved_word_set_id = 1}, + [861] = {.lex_state = 53, .reserved_word_set_id = 1}, + [862] = {.lex_state = 52, .reserved_word_set_id = 1}, + [863] = {.lex_state = 53, .reserved_word_set_id = 1}, + [864] = {.lex_state = 53, .reserved_word_set_id = 1}, + [865] = {.lex_state = 53, .reserved_word_set_id = 1}, + [866] = {.lex_state = 53, .reserved_word_set_id = 1}, + [867] = {.lex_state = 53, .reserved_word_set_id = 1}, + [868] = {.lex_state = 53, .reserved_word_set_id = 1}, + [869] = {.lex_state = 52, .reserved_word_set_id = 1}, + [870] = {.lex_state = 53, .reserved_word_set_id = 1}, + [871] = {.lex_state = 53, .reserved_word_set_id = 1}, + [872] = {.lex_state = 56, .reserved_word_set_id = 1}, + [873] = {.lex_state = 56, .reserved_word_set_id = 1}, + [874] = {.lex_state = 56, .reserved_word_set_id = 1}, + [875] = {.lex_state = 56, .reserved_word_set_id = 1}, + [876] = {.lex_state = 56, .reserved_word_set_id = 1}, + [877] = {.lex_state = 56, .reserved_word_set_id = 1}, + [878] = {.lex_state = 56, .reserved_word_set_id = 1}, + [879] = {.lex_state = 56, .reserved_word_set_id = 1}, + [880] = {.lex_state = 56, .reserved_word_set_id = 1}, + [881] = {.lex_state = 56, .reserved_word_set_id = 1}, + [882] = {.lex_state = 56, .reserved_word_set_id = 1}, + [883] = {.lex_state = 56, .reserved_word_set_id = 1}, + [884] = {.lex_state = 56, .reserved_word_set_id = 1}, + [885] = {.lex_state = 56, .reserved_word_set_id = 1}, + [886] = {.lex_state = 56, .reserved_word_set_id = 1}, + [887] = {.lex_state = 56, .reserved_word_set_id = 1}, + [888] = {.lex_state = 56, .reserved_word_set_id = 1}, + [889] = {.lex_state = 56, .reserved_word_set_id = 1}, + [890] = {.lex_state = 56, .reserved_word_set_id = 11}, + [891] = {.lex_state = 56, .reserved_word_set_id = 1}, + [892] = {.lex_state = 123, .reserved_word_set_id = 1}, + [893] = {.lex_state = 123, .reserved_word_set_id = 1}, + [894] = {.lex_state = 52, .reserved_word_set_id = 1}, + [895] = {.lex_state = 53, .reserved_word_set_id = 1}, + [896] = {.lex_state = 52, .reserved_word_set_id = 1}, + [897] = {.lex_state = 53, .reserved_word_set_id = 1}, + [898] = {.lex_state = 53, .reserved_word_set_id = 1}, + [899] = {.lex_state = 56, .reserved_word_set_id = 1}, + [900] = {.lex_state = 53, .reserved_word_set_id = 1}, + [901] = {.lex_state = 53, .reserved_word_set_id = 1}, + [902] = {.lex_state = 53, .reserved_word_set_id = 1}, + [903] = {.lex_state = 53, .reserved_word_set_id = 1}, + [904] = {.lex_state = 53, .reserved_word_set_id = 1}, + [905] = {.lex_state = 53, .reserved_word_set_id = 1}, + [906] = {.lex_state = 53, .reserved_word_set_id = 1}, + [907] = {.lex_state = 56, .reserved_word_set_id = 1}, + [908] = {.lex_state = 53, .reserved_word_set_id = 1}, + [909] = {.lex_state = 53, .reserved_word_set_id = 1}, + [910] = {.lex_state = 53, .reserved_word_set_id = 1}, + [911] = {.lex_state = 56}, + [912] = {.lex_state = 53, .reserved_word_set_id = 1}, + [913] = {.lex_state = 53, .reserved_word_set_id = 1}, + [914] = {.lex_state = 53, .reserved_word_set_id = 1}, + [915] = {.lex_state = 53, .reserved_word_set_id = 1}, + [916] = {.lex_state = 56, .reserved_word_set_id = 1}, + [917] = {.lex_state = 56, .reserved_word_set_id = 1}, + [918] = {.lex_state = 56, .reserved_word_set_id = 1}, + [919] = {.lex_state = 56, .reserved_word_set_id = 1}, + [920] = {.lex_state = 56, .reserved_word_set_id = 1}, + [921] = {.lex_state = 56, .reserved_word_set_id = 1}, + [922] = {.lex_state = 56, .reserved_word_set_id = 1}, + [923] = {.lex_state = 53, .reserved_word_set_id = 1}, + [924] = {.lex_state = 54, .reserved_word_set_id = 1}, + [925] = {.lex_state = 53, .reserved_word_set_id = 1}, + [926] = {.lex_state = 53, .reserved_word_set_id = 1}, + [927] = {.lex_state = 54, .reserved_word_set_id = 1}, + [928] = {.lex_state = 53, .reserved_word_set_id = 1}, + [929] = {.lex_state = 56, .reserved_word_set_id = 11}, + [930] = {.lex_state = 123, .reserved_word_set_id = 1}, + [931] = {.lex_state = 54, .reserved_word_set_id = 1}, + [932] = {.lex_state = 53, .reserved_word_set_id = 1}, + [933] = {.lex_state = 53, .reserved_word_set_id = 1}, + [934] = {.lex_state = 52, .reserved_word_set_id = 1}, + [935] = {.lex_state = 56, .reserved_word_set_id = 15}, + [936] = {.lex_state = 56, .reserved_word_set_id = 15}, + [937] = {.lex_state = 56, .reserved_word_set_id = 11}, + [938] = {.lex_state = 56, .reserved_word_set_id = 11}, + [939] = {.lex_state = 56, .reserved_word_set_id = 15}, + [940] = {.lex_state = 56, .reserved_word_set_id = 15}, + [941] = {.lex_state = 52, .reserved_word_set_id = 1}, + [942] = {.lex_state = 56, .reserved_word_set_id = 15}, + [943] = {.lex_state = 56, .reserved_word_set_id = 15}, + [944] = {.lex_state = 56, .reserved_word_set_id = 15}, + [945] = {.lex_state = 56, .reserved_word_set_id = 16}, + [946] = {.lex_state = 56, .reserved_word_set_id = 11}, + [947] = {.lex_state = 56, .reserved_word_set_id = 16}, + [948] = {.lex_state = 56, .reserved_word_set_id = 11}, + [949] = {.lex_state = 56, .reserved_word_set_id = 16}, + [950] = {.lex_state = 56, .reserved_word_set_id = 16}, + [951] = {.lex_state = 56, .reserved_word_set_id = 16}, + [952] = {.lex_state = 56, .reserved_word_set_id = 15}, + [953] = {.lex_state = 56, .reserved_word_set_id = 15}, + [954] = {.lex_state = 56}, + [955] = {.lex_state = 56, .reserved_word_set_id = 15}, + [956] = {.lex_state = 56, .reserved_word_set_id = 15}, + [957] = {.lex_state = 56, .reserved_word_set_id = 15}, + [958] = {.lex_state = 52}, + [959] = {.lex_state = 56, .reserved_word_set_id = 15}, + [960] = {.lex_state = 56, .reserved_word_set_id = 15}, + [961] = {.lex_state = 56, .reserved_word_set_id = 15}, + [962] = {.lex_state = 56, .reserved_word_set_id = 15}, + [963] = {.lex_state = 56, .reserved_word_set_id = 15}, + [964] = {.lex_state = 56, .reserved_word_set_id = 15}, + [965] = {.lex_state = 56, .reserved_word_set_id = 15}, + [966] = {.lex_state = 56, .reserved_word_set_id = 13}, + [967] = {.lex_state = 56, .reserved_word_set_id = 15}, + [968] = {.lex_state = 56, .reserved_word_set_id = 13}, + [969] = {.lex_state = 56, .reserved_word_set_id = 15}, + [970] = {.lex_state = 56, .reserved_word_set_id = 13}, + [971] = {.lex_state = 56, .reserved_word_set_id = 1}, + [972] = {.lex_state = 56, .reserved_word_set_id = 13}, + [973] = {.lex_state = 56, .reserved_word_set_id = 13}, + [974] = {.lex_state = 56, .reserved_word_set_id = 15}, + [975] = {.lex_state = 56, .reserved_word_set_id = 15}, + [976] = {.lex_state = 56, .reserved_word_set_id = 13}, + [977] = {.lex_state = 56, .reserved_word_set_id = 13}, + [978] = {.lex_state = 56, .reserved_word_set_id = 13}, + [979] = {.lex_state = 56, .reserved_word_set_id = 15}, + [980] = {.lex_state = 56, .reserved_word_set_id = 13}, + [981] = {.lex_state = 56, .reserved_word_set_id = 15}, + [982] = {.lex_state = 56, .reserved_word_set_id = 15}, + [983] = {.lex_state = 56, .reserved_word_set_id = 15}, + [984] = {.lex_state = 56, .reserved_word_set_id = 15}, + [985] = {.lex_state = 56, .reserved_word_set_id = 15}, + [986] = {.lex_state = 56, .reserved_word_set_id = 15}, + [987] = {.lex_state = 56, .reserved_word_set_id = 15}, + [988] = {.lex_state = 56, .reserved_word_set_id = 15}, + [989] = {.lex_state = 56, .reserved_word_set_id = 15}, + [990] = {.lex_state = 56, .reserved_word_set_id = 15}, + [991] = {.lex_state = 56, .reserved_word_set_id = 15}, + [992] = {.lex_state = 56, .reserved_word_set_id = 15}, + [993] = {.lex_state = 56, .reserved_word_set_id = 15}, + [994] = {.lex_state = 56, .reserved_word_set_id = 13}, + [995] = {.lex_state = 56, .reserved_word_set_id = 15}, + [996] = {.lex_state = 56, .reserved_word_set_id = 15}, + [997] = {.lex_state = 56, .reserved_word_set_id = 15}, + [998] = {.lex_state = 56, .reserved_word_set_id = 15}, + [999] = {.lex_state = 56, .reserved_word_set_id = 15}, + [1000] = {.lex_state = 56, .reserved_word_set_id = 15}, + [1001] = {.lex_state = 56, .reserved_word_set_id = 15}, + [1002] = {.lex_state = 56, .reserved_word_set_id = 13}, + [1003] = {.lex_state = 56, .reserved_word_set_id = 13}, + [1004] = {.lex_state = 56, .reserved_word_set_id = 15}, + [1005] = {.lex_state = 56, .reserved_word_set_id = 15}, + [1006] = {.lex_state = 52}, + [1007] = {.lex_state = 52}, + [1008] = {.lex_state = 56}, + [1009] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1010] = {.lex_state = 56}, + [1011] = {.lex_state = 56}, [1012] = {.lex_state = 52}, - [1013] = {.lex_state = 53}, - [1014] = {.lex_state = 53}, - [1015] = {.lex_state = 53}, - [1016] = {.lex_state = 53}, - [1017] = {.lex_state = 53}, - [1018] = {.lex_state = 53}, - [1019] = {.lex_state = 49}, - [1020] = {.lex_state = 53}, - [1021] = {.lex_state = 53}, - [1022] = {.lex_state = 53}, - [1023] = {.lex_state = 49}, - [1024] = {.lex_state = 49}, - [1025] = {.lex_state = 49}, - [1026] = {.lex_state = 49}, - [1027] = {.lex_state = 49}, - [1028] = {.lex_state = 49}, - [1029] = {.lex_state = 49}, - [1030] = {.lex_state = 49}, - [1031] = {.lex_state = 49}, - [1032] = {.lex_state = 49}, - [1033] = {.lex_state = 49}, - [1034] = {.lex_state = 49}, - [1035] = {.lex_state = 49}, - [1036] = {.lex_state = 49}, - [1037] = {.lex_state = 49}, - [1038] = {.lex_state = 49}, - [1039] = {.lex_state = 49}, - [1040] = {.lex_state = 49}, - [1041] = {.lex_state = 49}, - [1042] = {.lex_state = 49}, - [1043] = {.lex_state = 49}, - [1044] = {.lex_state = 53}, - [1045] = {.lex_state = 49}, - [1046] = {.lex_state = 49}, - [1047] = {.lex_state = 49}, - [1048] = {.lex_state = 49}, - [1049] = {.lex_state = 49}, - [1050] = {.lex_state = 49}, - [1051] = {.lex_state = 49}, - [1052] = {.lex_state = 49}, - [1053] = {.lex_state = 49}, - [1054] = {.lex_state = 49}, - [1055] = {.lex_state = 49}, - [1056] = {.lex_state = 49}, - [1057] = {.lex_state = 49}, - [1058] = {.lex_state = 49}, - [1059] = {.lex_state = 49}, - [1060] = {.lex_state = 49}, - [1061] = {.lex_state = 49}, - [1062] = {.lex_state = 53}, - [1063] = {.lex_state = 53}, - [1064] = {.lex_state = 49}, - [1065] = {.lex_state = 49}, - [1066] = {.lex_state = 49}, - [1067] = {.lex_state = 49}, - [1068] = {.lex_state = 49}, - [1069] = {.lex_state = 53}, - [1070] = {.lex_state = 49}, - [1071] = {.lex_state = 49}, - [1072] = {.lex_state = 49}, - [1073] = {.lex_state = 49}, - [1074] = {.lex_state = 49}, - [1075] = {.lex_state = 49}, - [1076] = {.lex_state = 53}, - [1077] = {.lex_state = 49}, - [1078] = {.lex_state = 49}, - [1079] = {.lex_state = 49}, - [1080] = {.lex_state = 49}, - [1081] = {.lex_state = 49}, - [1082] = {.lex_state = 49}, - [1083] = {.lex_state = 49}, - [1084] = {.lex_state = 53}, - [1085] = {.lex_state = 53}, - [1086] = {.lex_state = 49}, - [1087] = {.lex_state = 53}, - [1088] = {.lex_state = 49}, - [1089] = {.lex_state = 49}, - [1090] = {.lex_state = 49}, - [1091] = {.lex_state = 53}, - [1092] = {.lex_state = 49}, - [1093] = {.lex_state = 53}, - [1094] = {.lex_state = 49}, - [1095] = {.lex_state = 49}, - [1096] = {.lex_state = 49}, - [1097] = {.lex_state = 49}, - [1098] = {.lex_state = 49}, - [1099] = {.lex_state = 49}, - [1100] = {.lex_state = 49}, - [1101] = {.lex_state = 53}, - [1102] = {.lex_state = 49}, - [1103] = {.lex_state = 49}, - [1104] = {.lex_state = 49}, - [1105] = {.lex_state = 49}, - [1106] = {.lex_state = 49}, - [1107] = {.lex_state = 49}, - [1108] = {.lex_state = 49}, - [1109] = {.lex_state = 53}, - [1110] = {.lex_state = 53}, - [1111] = {.lex_state = 53}, - [1112] = {.lex_state = 53}, - [1113] = {.lex_state = 53}, - [1114] = {.lex_state = 53}, - [1115] = {.lex_state = 53}, - [1116] = {.lex_state = 49}, - [1117] = {.lex_state = 53}, - [1118] = {.lex_state = 53}, - [1119] = {.lex_state = 49}, - [1120] = {.lex_state = 53}, - [1121] = {.lex_state = 53}, - [1122] = {.lex_state = 53}, - [1123] = {.lex_state = 53}, - [1124] = {.lex_state = 53}, - [1125] = {.lex_state = 53}, - [1126] = {.lex_state = 53}, - [1127] = {.lex_state = 53}, - [1128] = {.lex_state = 53}, - [1129] = {.lex_state = 53}, - [1130] = {.lex_state = 53}, - [1131] = {.lex_state = 53}, - [1132] = {.lex_state = 53}, - [1133] = {.lex_state = 53}, - [1134] = {.lex_state = 53}, - [1135] = {.lex_state = 53}, - [1136] = {.lex_state = 53}, - [1137] = {.lex_state = 53}, - [1138] = {.lex_state = 53}, - [1139] = {.lex_state = 53}, - [1140] = {.lex_state = 53}, - [1141] = {.lex_state = 53}, - [1142] = {.lex_state = 53}, - [1143] = {.lex_state = 53}, - [1144] = {.lex_state = 53}, + [1013] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1014] = {.lex_state = 56}, + [1015] = {.lex_state = 52}, + [1016] = {.lex_state = 56}, + [1017] = {.lex_state = 52}, + [1018] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1019] = {.lex_state = 52}, + [1020] = {.lex_state = 56}, + [1021] = {.lex_state = 52}, + [1022] = {.lex_state = 56}, + [1023] = {.lex_state = 52}, + [1024] = {.lex_state = 52}, + [1025] = {.lex_state = 52}, + [1026] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1027] = {.lex_state = 56}, + [1028] = {.lex_state = 56}, + [1029] = {.lex_state = 56}, + [1030] = {.lex_state = 56}, + [1031] = {.lex_state = 56}, + [1032] = {.lex_state = 56}, + [1033] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1034] = {.lex_state = 56}, + [1035] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1036] = {.lex_state = 56}, + [1037] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1038] = {.lex_state = 56}, + [1039] = {.lex_state = 56}, + [1040] = {.lex_state = 52}, + [1041] = {.lex_state = 56}, + [1042] = {.lex_state = 56}, + [1043] = {.lex_state = 52}, + [1044] = {.lex_state = 56}, + [1045] = {.lex_state = 56}, + [1046] = {.lex_state = 52}, + [1047] = {.lex_state = 56}, + [1048] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1049] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1050] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1051] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1052] = {.lex_state = 56, .reserved_word_set_id = 11}, + [1053] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1054] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1055] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1056] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1057] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1058] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1059] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1060] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1061] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1062] = {.lex_state = 52}, + [1063] = {.lex_state = 56}, + [1064] = {.lex_state = 56}, + [1065] = {.lex_state = 56}, + [1066] = {.lex_state = 56}, + [1067] = {.lex_state = 56, .reserved_word_set_id = 16}, + [1068] = {.lex_state = 56}, + [1069] = {.lex_state = 56, .reserved_word_set_id = 11}, + [1070] = {.lex_state = 56}, + [1071] = {.lex_state = 56}, + [1072] = {.lex_state = 56}, + [1073] = {.lex_state = 56}, + [1074] = {.lex_state = 56}, + [1075] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1076] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1077] = {.lex_state = 56, .reserved_word_set_id = 15}, + [1078] = {.lex_state = 56, .reserved_word_set_id = 16}, + [1079] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1080] = {.lex_state = 52}, + [1081] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1082] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1083] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1084] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1085] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1086] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1087] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1088] = {.lex_state = 56}, + [1089] = {.lex_state = 55}, + [1090] = {.lex_state = 60}, + [1091] = {.lex_state = 60}, + [1092] = {.lex_state = 60}, + [1093] = {.lex_state = 55}, + [1094] = {.lex_state = 60}, + [1095] = {.lex_state = 55}, + [1096] = {.lex_state = 55}, + [1097] = {.lex_state = 56, .reserved_word_set_id = 16}, + [1098] = {.lex_state = 55}, + [1099] = {.lex_state = 55}, + [1100] = {.lex_state = 55}, + [1101] = {.lex_state = 60}, + [1102] = {.lex_state = 55}, + [1103] = {.lex_state = 56, .reserved_word_set_id = 16}, + [1104] = {.lex_state = 55}, + [1105] = {.lex_state = 55}, + [1106] = {.lex_state = 55}, + [1107] = {.lex_state = 56, .reserved_word_set_id = 16}, + [1108] = {.lex_state = 55}, + [1109] = {.lex_state = 60}, + [1110] = {.lex_state = 60}, + [1111] = {.lex_state = 55}, + [1112] = {.lex_state = 60}, + [1113] = {.lex_state = 55}, + [1114] = {.lex_state = 55}, + [1115] = {.lex_state = 55}, + [1116] = {.lex_state = 60}, + [1117] = {.lex_state = 60}, + [1118] = {.lex_state = 60}, + [1119] = {.lex_state = 60}, + [1120] = {.lex_state = 60}, + [1121] = {.lex_state = 60}, + [1122] = {.lex_state = 55}, + [1123] = {.lex_state = 60}, + [1124] = {.lex_state = 60}, + [1125] = {.lex_state = 60}, + [1126] = {.lex_state = 60}, + [1127] = {.lex_state = 55}, + [1128] = {.lex_state = 56, .reserved_word_set_id = 15}, + [1129] = {.lex_state = 56, .reserved_word_set_id = 13}, + [1130] = {.lex_state = 56, .reserved_word_set_id = 16}, + [1131] = {.lex_state = 52}, + [1132] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1133] = {.lex_state = 52}, + [1134] = {.lex_state = 52}, + [1135] = {.lex_state = 52}, + [1136] = {.lex_state = 52}, + [1137] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1138] = {.lex_state = 52}, + [1139] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1140] = {.lex_state = 52}, + [1141] = {.lex_state = 52}, + [1142] = {.lex_state = 56, .reserved_word_set_id = 13}, + [1143] = {.lex_state = 52}, + [1144] = {.lex_state = 52}, [1145] = {.lex_state = 52}, - [1146] = {.lex_state = 53}, - [1147] = {.lex_state = 53}, - [1148] = {.lex_state = 53}, - [1149] = {.lex_state = 53}, + [1146] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1147] = {.lex_state = 52}, + [1148] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1149] = {.lex_state = 52}, [1150] = {.lex_state = 52}, [1151] = {.lex_state = 52}, - [1152] = {.lex_state = 53}, - [1153] = {.lex_state = 53}, - [1154] = {.lex_state = 53}, - [1155] = {.lex_state = 53}, - [1156] = {.lex_state = 53}, + [1152] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1153] = {.lex_state = 52}, + [1154] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1155] = {.lex_state = 52}, + [1156] = {.lex_state = 52}, [1157] = {.lex_state = 52}, - [1158] = {.lex_state = 53}, - [1159] = {.lex_state = 53}, - [1160] = {.lex_state = 53}, - [1161] = {.lex_state = 48}, - [1162] = {.lex_state = 53}, - [1163] = {.lex_state = 48}, - [1164] = {.lex_state = 48}, - [1165] = {.lex_state = 53}, - [1166] = {.lex_state = 25}, - [1167] = {.lex_state = 48}, + [1158] = {.lex_state = 52}, + [1159] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1160] = {.lex_state = 56, .reserved_word_set_id = 13}, + [1161] = {.lex_state = 52}, + [1162] = {.lex_state = 52}, + [1163] = {.lex_state = 52}, + [1164] = {.lex_state = 52}, + [1165] = {.lex_state = 52}, + [1166] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1167] = {.lex_state = 56, .reserved_word_set_id = 1}, [1168] = {.lex_state = 52}, - [1169] = {.lex_state = 52}, - [1170] = {.lex_state = 48}, - [1171] = {.lex_state = 52}, - [1172] = {.lex_state = 48}, - [1173] = {.lex_state = 48}, - [1174] = {.lex_state = 48}, - [1175] = {.lex_state = 48}, - [1176] = {.lex_state = 52}, - [1177] = {.lex_state = 48}, - [1178] = {.lex_state = 52}, - [1179] = {.lex_state = 48}, - [1180] = {.lex_state = 52}, - [1181] = {.lex_state = 48}, - [1182] = {.lex_state = 52}, - [1183] = {.lex_state = 48}, - [1184] = {.lex_state = 52}, - [1185] = {.lex_state = 48}, - [1186] = {.lex_state = 48}, - [1187] = {.lex_state = 52}, - [1188] = {.lex_state = 48}, - [1189] = {.lex_state = 52}, - [1190] = {.lex_state = 52}, - [1191] = {.lex_state = 48}, - [1192] = {.lex_state = 48}, - [1193] = {.lex_state = 48}, - [1194] = {.lex_state = 48}, - [1195] = {.lex_state = 48}, - [1196] = {.lex_state = 48}, - [1197] = {.lex_state = 48}, - [1198] = {.lex_state = 48}, - [1199] = {.lex_state = 48}, - [1200] = {.lex_state = 48}, - [1201] = {.lex_state = 48}, - [1202] = {.lex_state = 52}, - [1203] = {.lex_state = 48}, - [1204] = {.lex_state = 48}, - [1205] = {.lex_state = 52}, - [1206] = {.lex_state = 48}, - [1207] = {.lex_state = 48}, - [1208] = {.lex_state = 48}, - [1209] = {.lex_state = 48}, - [1210] = {.lex_state = 48}, - [1211] = {.lex_state = 48}, - [1212] = {.lex_state = 48}, - [1213] = {.lex_state = 52}, - [1214] = {.lex_state = 48}, - [1215] = {.lex_state = 48}, - [1216] = {.lex_state = 48}, - [1217] = {.lex_state = 48}, - [1218] = {.lex_state = 52}, - [1219] = {.lex_state = 48}, - [1220] = {.lex_state = 52}, - [1221] = {.lex_state = 48}, - [1222] = {.lex_state = 52}, - [1223] = {.lex_state = 25}, - [1224] = {.lex_state = 25}, - [1225] = {.lex_state = 25}, - [1226] = {.lex_state = 25}, - [1227] = {.lex_state = 25}, - [1228] = {.lex_state = 25}, - [1229] = {.lex_state = 25}, - [1230] = {.lex_state = 25}, - [1231] = {.lex_state = 25}, - [1232] = {.lex_state = 25}, - [1233] = {.lex_state = 52}, - [1234] = {.lex_state = 25}, - [1235] = {.lex_state = 25}, - [1236] = {.lex_state = 25}, - [1237] = {.lex_state = 25}, - [1238] = {.lex_state = 25}, - [1239] = {.lex_state = 25}, - [1240] = {.lex_state = 25}, - [1241] = {.lex_state = 25}, - [1242] = {.lex_state = 25}, - [1243] = {.lex_state = 25}, - [1244] = {.lex_state = 25}, - [1245] = {.lex_state = 25}, - [1246] = {.lex_state = 53}, - [1247] = {.lex_state = 25}, - [1248] = {.lex_state = 25}, - [1249] = {.lex_state = 25}, - [1250] = {.lex_state = 25}, - [1251] = {.lex_state = 25}, - [1252] = {.lex_state = 53}, - [1253] = {.lex_state = 25}, - [1254] = {.lex_state = 25}, - [1255] = {.lex_state = 53}, - [1256] = {.lex_state = 25}, - [1257] = {.lex_state = 25}, - [1258] = {.lex_state = 25}, - [1259] = {.lex_state = 53}, - [1260] = {.lex_state = 25}, - [1261] = {.lex_state = 53}, - [1262] = {.lex_state = 53}, - [1263] = {.lex_state = 53}, - [1264] = {.lex_state = 53}, - [1265] = {.lex_state = 53}, - [1266] = {.lex_state = 53}, - [1267] = {.lex_state = 53}, - [1268] = {.lex_state = 53}, - [1269] = {.lex_state = 53}, - [1270] = {.lex_state = 53}, - [1271] = {.lex_state = 53}, - [1272] = {.lex_state = 53}, - [1273] = {.lex_state = 53}, - [1274] = {.lex_state = 53}, - [1275] = {.lex_state = 53}, - [1276] = {.lex_state = 53}, - [1277] = {.lex_state = 53}, - [1278] = {.lex_state = 53}, - [1279] = {.lex_state = 53}, - [1280] = {.lex_state = 53}, - [1281] = {.lex_state = 53}, - [1282] = {.lex_state = 53}, - [1283] = {.lex_state = 53}, - [1284] = {.lex_state = 53}, - [1285] = {.lex_state = 53}, - [1286] = {.lex_state = 53}, - [1287] = {.lex_state = 53}, - [1288] = {.lex_state = 53}, - [1289] = {.lex_state = 53}, - [1290] = {.lex_state = 53}, - [1291] = {.lex_state = 50}, - [1292] = {.lex_state = 50}, - [1293] = {.lex_state = 50}, - [1294] = {.lex_state = 50}, - [1295] = {.lex_state = 53}, - [1296] = {.lex_state = 53}, - [1297] = {.lex_state = 53}, - [1298] = {.lex_state = 53}, - [1299] = {.lex_state = 53}, - [1300] = {.lex_state = 53}, - [1301] = {.lex_state = 53}, - [1302] = {.lex_state = 53}, - [1303] = {.lex_state = 53}, - [1304] = {.lex_state = 53}, - [1305] = {.lex_state = 53}, - [1306] = {.lex_state = 53}, - [1307] = {.lex_state = 53}, - [1308] = {.lex_state = 53}, - [1309] = {.lex_state = 53}, - [1310] = {.lex_state = 53}, - [1311] = {.lex_state = 53}, - [1312] = {.lex_state = 53}, - [1313] = {.lex_state = 53}, - [1314] = {.lex_state = 53}, - [1315] = {.lex_state = 53}, - [1316] = {.lex_state = 53}, - [1317] = {.lex_state = 56}, - [1318] = {.lex_state = 53}, - [1319] = {.lex_state = 53}, - [1320] = {.lex_state = 53}, - [1321] = {.lex_state = 53}, - [1322] = {.lex_state = 53}, - [1323] = {.lex_state = 53}, - [1324] = {.lex_state = 56}, - [1325] = {.lex_state = 53}, - [1326] = {.lex_state = 53}, - [1327] = {.lex_state = 53}, - [1328] = {.lex_state = 53}, - [1329] = {.lex_state = 53}, - [1330] = {.lex_state = 53}, - [1331] = {.lex_state = 49}, - [1332] = {.lex_state = 50}, - [1333] = {.lex_state = 53}, - [1334] = {.lex_state = 56}, - [1335] = {.lex_state = 53}, - [1336] = {.lex_state = 50}, - [1337] = {.lex_state = 53}, - [1338] = {.lex_state = 53}, - [1339] = {.lex_state = 53}, - [1340] = {.lex_state = 50}, - [1341] = {.lex_state = 50}, - [1342] = {.lex_state = 50}, - [1343] = {.lex_state = 50}, - [1344] = {.lex_state = 50}, - [1345] = {.lex_state = 53}, - [1346] = {.lex_state = 50}, - [1347] = {.lex_state = 50}, - [1348] = {.lex_state = 50}, - [1349] = {.lex_state = 53}, - [1350] = {.lex_state = 53}, - [1351] = {.lex_state = 53}, - [1352] = {.lex_state = 50}, - [1353] = {.lex_state = 50}, - [1354] = {.lex_state = 53}, - [1355] = {.lex_state = 53}, - [1356] = {.lex_state = 53}, - [1357] = {.lex_state = 53}, - [1358] = {.lex_state = 53}, - [1359] = {.lex_state = 50}, - [1360] = {.lex_state = 50}, - [1361] = {.lex_state = 53}, - [1362] = {.lex_state = 53}, - [1363] = {.lex_state = 53}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 120}, - [1366] = {.lex_state = 53}, - [1367] = {.lex_state = 53}, - [1368] = {.lex_state = 53}, - [1369] = {.lex_state = 53}, - [1370] = {.lex_state = 53}, - [1371] = {.lex_state = 53}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 120}, - [1374] = {.lex_state = 120}, - [1375] = {.lex_state = 53}, - [1376] = {.lex_state = 120}, - [1377] = {.lex_state = 49}, - [1378] = {.lex_state = 120}, - [1379] = {.lex_state = 54}, - [1380] = {.lex_state = 53}, - [1381] = {.lex_state = 120}, - [1382] = {.lex_state = 53}, - [1383] = {.lex_state = 53}, - [1384] = {.lex_state = 53}, - [1385] = {.lex_state = 49}, - [1386] = {.lex_state = 49}, - [1387] = {.lex_state = 54}, - [1388] = {.lex_state = 53}, - [1389] = {.lex_state = 53}, - [1390] = {.lex_state = 54}, - [1391] = {.lex_state = 120}, - [1392] = {.lex_state = 53}, - [1393] = {.lex_state = 120}, - [1394] = {.lex_state = 120}, - [1395] = {.lex_state = 53}, - [1396] = {.lex_state = 53}, - [1397] = {.lex_state = 53}, - [1398] = {.lex_state = 54}, - [1399] = {.lex_state = 53}, - [1400] = {.lex_state = 120}, - [1401] = {.lex_state = 120}, - [1402] = {.lex_state = 120}, - [1403] = {.lex_state = 53}, - [1404] = {.lex_state = 120}, - [1405] = {.lex_state = 53}, - [1406] = {.lex_state = 120}, - [1407] = {.lex_state = 120}, - [1408] = {.lex_state = 120}, - [1409] = {.lex_state = 53}, - [1410] = {.lex_state = 53}, - [1411] = {.lex_state = 120}, - [1412] = {.lex_state = 120}, - [1413] = {.lex_state = 53}, - [1414] = {.lex_state = 53}, - [1415] = {.lex_state = 50}, - [1416] = {.lex_state = 120}, - [1417] = {.lex_state = 50}, - [1418] = {.lex_state = 53}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 53}, - [1421] = {.lex_state = 53}, - [1422] = {.lex_state = 120}, - [1423] = {.lex_state = 53}, - [1424] = {.lex_state = 53}, - [1425] = {.lex_state = 120}, - [1426] = {.lex_state = 53}, - [1427] = {.lex_state = 50}, - [1428] = {.lex_state = 120}, - [1429] = {.lex_state = 53}, - [1430] = {.lex_state = 53}, - [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 53}, - [1433] = {.lex_state = 120}, - [1434] = {.lex_state = 120}, - [1435] = {.lex_state = 120}, - [1436] = {.lex_state = 53}, - [1437] = {.lex_state = 53}, - [1438] = {.lex_state = 120}, - [1439] = {.lex_state = 120}, - [1440] = {.lex_state = 53}, - [1441] = {.lex_state = 53}, - [1442] = {.lex_state = 53}, - [1443] = {.lex_state = 120}, - [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 53}, - [1446] = {.lex_state = 53}, - [1447] = {.lex_state = 53}, - [1448] = {.lex_state = 53}, - [1449] = {.lex_state = 53}, - [1450] = {.lex_state = 53}, - [1451] = {.lex_state = 53}, - [1452] = {.lex_state = 53}, - [1453] = {.lex_state = 53}, - [1454] = {.lex_state = 120}, - [1455] = {.lex_state = 53}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 53}, - [1458] = {.lex_state = 53}, - [1459] = {.lex_state = 53}, - [1460] = {.lex_state = 53}, - [1461] = {.lex_state = 120}, - [1462] = {.lex_state = 53}, - [1463] = {.lex_state = 50}, - [1464] = {.lex_state = 53}, - [1465] = {.lex_state = 53}, - [1466] = {.lex_state = 53}, - [1467] = {.lex_state = 53}, - [1468] = {.lex_state = 53}, - [1469] = {.lex_state = 120}, - [1470] = {.lex_state = 120}, - [1471] = {.lex_state = 53}, - [1472] = {.lex_state = 53}, - [1473] = {.lex_state = 53}, - [1474] = {.lex_state = 120}, - [1475] = {.lex_state = 53}, - [1476] = {.lex_state = 56}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 53}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 56}, - [1481] = {.lex_state = 120}, - [1482] = {.lex_state = 56}, - [1483] = {.lex_state = 56}, - [1484] = {.lex_state = 120}, - [1485] = {.lex_state = 56}, - [1486] = {.lex_state = 120}, - [1487] = {.lex_state = 50}, - [1488] = {.lex_state = 56}, - [1489] = {.lex_state = 56}, - [1490] = {.lex_state = 56}, - [1491] = {.lex_state = 53}, - [1492] = {.lex_state = 53}, - [1493] = {.lex_state = 56}, - [1494] = {.lex_state = 53}, - [1495] = {.lex_state = 120}, - [1496] = {.lex_state = 56}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 56}, - [1499] = {.lex_state = 53}, - [1500] = {.lex_state = 53}, - [1501] = {.lex_state = 53}, - [1502] = {.lex_state = 53}, - [1503] = {.lex_state = 53}, - [1504] = {.lex_state = 53}, - [1505] = {.lex_state = 53}, - [1506] = {.lex_state = 53}, - [1507] = {.lex_state = 53}, - [1508] = {.lex_state = 53}, - [1509] = {.lex_state = 53}, - [1510] = {.lex_state = 53}, - [1511] = {.lex_state = 53}, - [1512] = {.lex_state = 53}, - [1513] = {.lex_state = 53}, - [1514] = {.lex_state = 53}, - [1515] = {.lex_state = 53}, - [1516] = {.lex_state = 45}, - [1517] = {.lex_state = 50}, - [1518] = {.lex_state = 53}, - [1519] = {.lex_state = 53}, - [1520] = {.lex_state = 53}, - [1521] = {.lex_state = 53}, - [1522] = {.lex_state = 53}, - [1523] = {.lex_state = 53}, - [1524] = {.lex_state = 53}, - [1525] = {.lex_state = 53}, - [1526] = {.lex_state = 53}, - [1527] = {.lex_state = 30}, - [1528] = {.lex_state = 32}, - [1529] = {.lex_state = 50}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 53}, - [1534] = {.lex_state = 50}, - [1535] = {.lex_state = 50}, - [1536] = {.lex_state = 45}, - [1537] = {.lex_state = 37}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 53}, - [1540] = {.lex_state = 37}, - [1541] = {.lex_state = 32}, - [1542] = {.lex_state = 53}, - [1543] = {.lex_state = 53}, - [1544] = {.lex_state = 53}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 53}, - [1547] = {.lex_state = 120}, - [1548] = {.lex_state = 53}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 50}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 53}, - [1553] = {.lex_state = 30}, - [1554] = {.lex_state = 37}, - [1555] = {.lex_state = 120}, - [1556] = {.lex_state = 32}, - [1557] = {.lex_state = 30}, - [1558] = {.lex_state = 37}, - [1559] = {.lex_state = 32}, - [1560] = {.lex_state = 32}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 32}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 30}, - [1565] = {.lex_state = 37}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 32}, - [1568] = {.lex_state = 53}, - [1569] = {.lex_state = 37}, - [1570] = {.lex_state = 37}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 53}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 34}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 45}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 45}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 53}, - [1589] = {.lex_state = 53}, - [1590] = {.lex_state = 45}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 45}, - [1597] = {.lex_state = 0}, - [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 0}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 53}, - [1611] = {.lex_state = 53}, - [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 34}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 0}, - [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 53}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 30}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 53}, - [1655] = {.lex_state = 34}, - [1656] = {.lex_state = 45}, - [1657] = {.lex_state = 45}, - [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 0}, + [1169] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1170] = {.lex_state = 52}, + [1171] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1172] = {.lex_state = 56, .reserved_word_set_id = 13}, + [1173] = {.lex_state = 56}, + [1174] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1175] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1176] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1177] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1178] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1179] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1180] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1181] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1182] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1183] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1184] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1185] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1186] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1187] = {.lex_state = 56}, + [1188] = {.lex_state = 56}, + [1189] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1190] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1191] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1192] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1193] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1194] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1195] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1196] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1197] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1198] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1199] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1200] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1201] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1202] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1203] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1204] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1205] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1206] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1207] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1208] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1209] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1210] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1211] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1212] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1213] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1214] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1215] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1216] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1217] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1218] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1219] = {.lex_state = 55, .reserved_word_set_id = 1}, + [1220] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1221] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1222] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1223] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1224] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1225] = {.lex_state = 55, .reserved_word_set_id = 1}, + [1226] = {.lex_state = 55, .reserved_word_set_id = 1}, + [1227] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1228] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1229] = {.lex_state = 55, .reserved_word_set_id = 1}, + [1230] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1231] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1232] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1233] = {.lex_state = 56}, + [1234] = {.lex_state = 56}, + [1235] = {.lex_state = 56}, + [1236] = {.lex_state = 56}, + [1237] = {.lex_state = 56}, + [1238] = {.lex_state = 56, .reserved_word_set_id = 19}, + [1239] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1240] = {.lex_state = 56}, + [1241] = {.lex_state = 56}, + [1242] = {.lex_state = 56}, + [1243] = {.lex_state = 56}, + [1244] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1245] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1246] = {.lex_state = 56}, + [1247] = {.lex_state = 56}, + [1248] = {.lex_state = 56}, + [1249] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1250] = {.lex_state = 56}, + [1251] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1252] = {.lex_state = 56}, + [1253] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1254] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1255] = {.lex_state = 52}, + [1256] = {.lex_state = 52}, + [1257] = {.lex_state = 52}, + [1258] = {.lex_state = 52}, + [1259] = {.lex_state = 52}, + [1260] = {.lex_state = 52}, + [1261] = {.lex_state = 52}, + [1262] = {.lex_state = 52}, + [1263] = {.lex_state = 52}, + [1264] = {.lex_state = 52}, + [1265] = {.lex_state = 52}, + [1266] = {.lex_state = 52}, + [1267] = {.lex_state = 52}, + [1268] = {.lex_state = 52}, + [1269] = {.lex_state = 52}, + [1270] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1271] = {.lex_state = 52}, + [1272] = {.lex_state = 52}, + [1273] = {.lex_state = 52}, + [1274] = {.lex_state = 52}, + [1275] = {.lex_state = 52}, + [1276] = {.lex_state = 52}, + [1277] = {.lex_state = 52}, + [1278] = {.lex_state = 52}, + [1279] = {.lex_state = 52}, + [1280] = {.lex_state = 52}, + [1281] = {.lex_state = 52}, + [1282] = {.lex_state = 52}, + [1283] = {.lex_state = 52}, + [1284] = {.lex_state = 52}, + [1285] = {.lex_state = 52}, + [1286] = {.lex_state = 52}, + [1287] = {.lex_state = 52}, + [1288] = {.lex_state = 52}, + [1289] = {.lex_state = 52}, + [1290] = {.lex_state = 52}, + [1291] = {.lex_state = 52}, + [1292] = {.lex_state = 52}, + [1293] = {.lex_state = 52}, + [1294] = {.lex_state = 52}, + [1295] = {.lex_state = 52}, + [1296] = {.lex_state = 52}, + [1297] = {.lex_state = 52}, + [1298] = {.lex_state = 52}, + [1299] = {.lex_state = 52}, + [1300] = {.lex_state = 52}, + [1301] = {.lex_state = 52}, + [1302] = {.lex_state = 52}, + [1303] = {.lex_state = 52}, + [1304] = {.lex_state = 52}, + [1305] = {.lex_state = 52}, + [1306] = {.lex_state = 52}, + [1307] = {.lex_state = 52}, + [1308] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1309] = {.lex_state = 52}, + [1310] = {.lex_state = 52}, + [1311] = {.lex_state = 52}, + [1312] = {.lex_state = 52}, + [1313] = {.lex_state = 52}, + [1314] = {.lex_state = 52}, + [1315] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1316] = {.lex_state = 52}, + [1317] = {.lex_state = 52}, + [1318] = {.lex_state = 52}, + [1319] = {.lex_state = 52}, + [1320] = {.lex_state = 52}, + [1321] = {.lex_state = 52}, + [1322] = {.lex_state = 52}, + [1323] = {.lex_state = 52}, + [1324] = {.lex_state = 52}, + [1325] = {.lex_state = 52}, + [1326] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1327] = {.lex_state = 52}, + [1328] = {.lex_state = 52}, + [1329] = {.lex_state = 52}, + [1330] = {.lex_state = 52}, + [1331] = {.lex_state = 52}, + [1332] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1333] = {.lex_state = 52}, + [1334] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1335] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1336] = {.lex_state = 52}, + [1337] = {.lex_state = 52}, + [1338] = {.lex_state = 52}, + [1339] = {.lex_state = 52}, + [1340] = {.lex_state = 52}, + [1341] = {.lex_state = 52}, + [1342] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1343] = {.lex_state = 52}, + [1344] = {.lex_state = 52}, + [1345] = {.lex_state = 52}, + [1346] = {.lex_state = 52}, + [1347] = {.lex_state = 52}, + [1348] = {.lex_state = 52}, + [1349] = {.lex_state = 52}, + [1350] = {.lex_state = 52}, + [1351] = {.lex_state = 56}, + [1352] = {.lex_state = 52}, + [1353] = {.lex_state = 52}, + [1354] = {.lex_state = 52}, + [1355] = {.lex_state = 52}, + [1356] = {.lex_state = 52}, + [1357] = {.lex_state = 52}, + [1358] = {.lex_state = 52}, + [1359] = {.lex_state = 52}, + [1360] = {.lex_state = 52}, + [1361] = {.lex_state = 52}, + [1362] = {.lex_state = 52}, + [1363] = {.lex_state = 52}, + [1364] = {.lex_state = 52}, + [1365] = {.lex_state = 52}, + [1366] = {.lex_state = 52}, + [1367] = {.lex_state = 56}, + [1368] = {.lex_state = 52}, + [1369] = {.lex_state = 56}, + [1370] = {.lex_state = 52}, + [1371] = {.lex_state = 52}, + [1372] = {.lex_state = 52}, + [1373] = {.lex_state = 56}, + [1374] = {.lex_state = 52}, + [1375] = {.lex_state = 52}, + [1376] = {.lex_state = 52}, + [1377] = {.lex_state = 52}, + [1378] = {.lex_state = 52}, + [1379] = {.lex_state = 52}, + [1380] = {.lex_state = 52}, + [1381] = {.lex_state = 52}, + [1382] = {.lex_state = 52}, + [1383] = {.lex_state = 52}, + [1384] = {.lex_state = 52}, + [1385] = {.lex_state = 52}, + [1386] = {.lex_state = 52}, + [1387] = {.lex_state = 52}, + [1388] = {.lex_state = 52}, + [1389] = {.lex_state = 52}, + [1390] = {.lex_state = 52}, + [1391] = {.lex_state = 52}, + [1392] = {.lex_state = 56}, + [1393] = {.lex_state = 56}, + [1394] = {.lex_state = 52}, + [1395] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1396] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1397] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1398] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1399] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1400] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1401] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1402] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1403] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1404] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1405] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1406] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1407] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1408] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1409] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1410] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1411] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1412] = {.lex_state = 56, .reserved_word_set_id = 17}, + [1413] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1414] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1415] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1416] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1417] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1418] = {.lex_state = 55, .reserved_word_set_id = 1}, + [1419] = {.lex_state = 55}, + [1420] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1421] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1422] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1423] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1424] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1425] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1426] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1427] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1428] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1429] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1430] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1431] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1432] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1433] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1434] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1435] = {.lex_state = 56, .reserved_word_set_id = 18}, + [1436] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1437] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1438] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1439] = {.lex_state = 25}, + [1440] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1441] = {.lex_state = 55}, + [1442] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1443] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1444] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1445] = {.lex_state = 55}, + [1446] = {.lex_state = 28, .reserved_word_set_id = 1}, + [1447] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1448] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1449] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1450] = {.lex_state = 55}, + [1451] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1452] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1453] = {.lex_state = 56}, + [1454] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1455] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1456] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1457] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1458] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1459] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1460] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1461] = {.lex_state = 56}, + [1462] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1463] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1464] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1465] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1466] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1467] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1468] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1469] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1470] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1471] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1472] = {.lex_state = 55}, + [1473] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1474] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1475] = {.lex_state = 55}, + [1476] = {.lex_state = 55}, + [1477] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1478] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1479] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1480] = {.lex_state = 55}, + [1481] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1482] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1483] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1484] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1485] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1486] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1487] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1488] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1489] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1490] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1491] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1492] = {.lex_state = 55}, + [1493] = {.lex_state = 55}, + [1494] = {.lex_state = 55}, + [1495] = {.lex_state = 55}, + [1496] = {.lex_state = 55}, + [1497] = {.lex_state = 55}, + [1498] = {.lex_state = 55}, + [1499] = {.lex_state = 55}, + [1500] = {.lex_state = 55}, + [1501] = {.lex_state = 55}, + [1502] = {.lex_state = 55}, + [1503] = {.lex_state = 55}, + [1504] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1505] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1506] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1507] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1508] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1509] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1510] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1511] = {.lex_state = 51, .reserved_word_set_id = 1}, + [1512] = {.lex_state = 25}, + [1513] = {.lex_state = 25}, + [1514] = {.lex_state = 25}, + [1515] = {.lex_state = 25}, + [1516] = {.lex_state = 25}, + [1517] = {.lex_state = 25}, + [1518] = {.lex_state = 25}, + [1519] = {.lex_state = 25}, + [1520] = {.lex_state = 25}, + [1521] = {.lex_state = 25}, + [1522] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1523] = {.lex_state = 25}, + [1524] = {.lex_state = 25}, + [1525] = {.lex_state = 25}, + [1526] = {.lex_state = 25}, + [1527] = {.lex_state = 25}, + [1528] = {.lex_state = 25}, + [1529] = {.lex_state = 25}, + [1530] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1531] = {.lex_state = 25}, + [1532] = {.lex_state = 25}, + [1533] = {.lex_state = 55}, + [1534] = {.lex_state = 55}, + [1535] = {.lex_state = 25}, + [1536] = {.lex_state = 25}, + [1537] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1538] = {.lex_state = 25}, + [1539] = {.lex_state = 25}, + [1540] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1541] = {.lex_state = 25}, + [1542] = {.lex_state = 25}, + [1543] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1544] = {.lex_state = 25}, + [1545] = {.lex_state = 25}, + [1546] = {.lex_state = 25}, + [1547] = {.lex_state = 25}, + [1548] = {.lex_state = 25}, + [1549] = {.lex_state = 25}, + [1550] = {.lex_state = 25}, + [1551] = {.lex_state = 25}, + [1552] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1553] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1554] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1555] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1556] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1557] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1558] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1559] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1560] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1561] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1562] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1563] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1564] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1565] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1566] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1567] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1568] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1569] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1570] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1571] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1572] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1573] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1574] = {.lex_state = 56}, + [1575] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1576] = {.lex_state = 56, .reserved_word_set_id = 20}, + [1577] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1578] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1579] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1580] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1581] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1582] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1583] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1584] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1585] = {.lex_state = 56}, + [1586] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1587] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1588] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1589] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1590] = {.lex_state = 56}, + [1591] = {.lex_state = 56}, + [1592] = {.lex_state = 56}, + [1593] = {.lex_state = 56}, + [1594] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1595] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1596] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1597] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1598] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1599] = {.lex_state = 56}, + [1600] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1601] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1602] = {.lex_state = 56}, + [1603] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1604] = {.lex_state = 56}, + [1605] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1606] = {.lex_state = 56}, + [1607] = {.lex_state = 56}, + [1608] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1609] = {.lex_state = 56}, + [1610] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1611] = {.lex_state = 56}, + [1612] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1613] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1614] = {.lex_state = 56}, + [1615] = {.lex_state = 56}, + [1616] = {.lex_state = 56}, + [1617] = {.lex_state = 56}, + [1618] = {.lex_state = 56}, + [1619] = {.lex_state = 56}, + [1620] = {.lex_state = 56}, + [1621] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1622] = {.lex_state = 56}, + [1623] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1624] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1625] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1626] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1627] = {.lex_state = 56}, + [1628] = {.lex_state = 56}, + [1629] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1630] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1631] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1632] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1633] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1634] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1635] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1636] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1637] = {.lex_state = 56}, + [1638] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1639] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1640] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1641] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1642] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1643] = {.lex_state = 56}, + [1644] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1645] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1646] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1647] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1648] = {.lex_state = 52, .reserved_word_set_id = 1}, + [1649] = {.lex_state = 56}, + [1650] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1651] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1652] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1653] = {.lex_state = 123}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 56}, + [1656] = {.lex_state = 56}, + [1657] = {.lex_state = 56}, + [1658] = {.lex_state = 56}, + [1659] = {.lex_state = 56}, + [1660] = {.lex_state = 123}, [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 45}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 30}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 30}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 53}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 34}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 120}, - [1690] = {.lex_state = 33}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 33}, - [1693] = {.lex_state = 120}, - [1694] = {.lex_state = 53}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 33}, - [1700] = {.lex_state = 33}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 120}, - [1703] = {.lex_state = 33}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 33}, - [1707] = {.lex_state = 33}, - [1708] = {.lex_state = 33}, - [1709] = {.lex_state = 33}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 33}, - [1712] = {.lex_state = 33}, - [1713] = {.lex_state = 0}, + [1662] = {.lex_state = 56}, + [1663] = {.lex_state = 56}, + [1664] = {.lex_state = 123}, + [1665] = {.lex_state = 56}, + [1666] = {.lex_state = 123}, + [1667] = {.lex_state = 56}, + [1668] = {.lex_state = 56}, + [1669] = {.lex_state = 56}, + [1670] = {.lex_state = 52, .reserved_word_set_id = 1}, + [1671] = {.lex_state = 56}, + [1672] = {.lex_state = 123}, + [1673] = {.lex_state = 123}, + [1674] = {.lex_state = 123}, + [1675] = {.lex_state = 123}, + [1676] = {.lex_state = 123}, + [1677] = {.lex_state = 123}, + [1678] = {.lex_state = 123}, + [1679] = {.lex_state = 56}, + [1680] = {.lex_state = 123}, + [1681] = {.lex_state = 56}, + [1682] = {.lex_state = 57, .reserved_word_set_id = 1}, + [1683] = {.lex_state = 56}, + [1684] = {.lex_state = 56}, + [1685] = {.lex_state = 56}, + [1686] = {.lex_state = 52, .reserved_word_set_id = 1}, + [1687] = {.lex_state = 123}, + [1688] = {.lex_state = 56}, + [1689] = {.lex_state = 56}, + [1690] = {.lex_state = 57, .reserved_word_set_id = 1}, + [1691] = {.lex_state = 57, .reserved_word_set_id = 1}, + [1692] = {.lex_state = 56}, + [1693] = {.lex_state = 57, .reserved_word_set_id = 1}, + [1694] = {.lex_state = 52, .reserved_word_set_id = 1}, + [1695] = {.lex_state = 56}, + [1696] = {.lex_state = 56}, + [1697] = {.lex_state = 56}, + [1698] = {.lex_state = 123}, + [1699] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1700] = {.lex_state = 123}, + [1701] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1702] = {.lex_state = 123}, + [1703] = {.lex_state = 56}, + [1704] = {.lex_state = 56}, + [1705] = {.lex_state = 123}, + [1706] = {.lex_state = 56}, + [1707] = {.lex_state = 123}, + [1708] = {.lex_state = 0}, + [1709] = {.lex_state = 56}, + [1710] = {.lex_state = 56}, + [1711] = {.lex_state = 56}, + [1712] = {.lex_state = 56}, + [1713] = {.lex_state = 123}, [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 120}, - [1716] = {.lex_state = 120}, - [1717] = {.lex_state = 33}, - [1718] = {.lex_state = 33}, - [1719] = {.lex_state = 53}, - [1720] = {.lex_state = 120}, - [1721] = {.lex_state = 120}, - [1722] = {.lex_state = 120}, - [1723] = {.lex_state = 33}, - [1724] = {.lex_state = 120}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 120}, - [1727] = {.lex_state = 45}, - [1728] = {.lex_state = 53}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 45}, - [1731] = {.lex_state = 33}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 53}, - [1735] = {.lex_state = 120}, - [1736] = {.lex_state = 120}, - [1737] = {.lex_state = 120}, - [1738] = {.lex_state = 120}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 120}, + [1715] = {.lex_state = 123}, + [1716] = {.lex_state = 123}, + [1717] = {.lex_state = 123}, + [1718] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1719] = {.lex_state = 123}, + [1720] = {.lex_state = 56}, + [1721] = {.lex_state = 56}, + [1722] = {.lex_state = 56}, + [1723] = {.lex_state = 123}, + [1724] = {.lex_state = 123}, + [1725] = {.lex_state = 123}, + [1726] = {.lex_state = 123}, + [1727] = {.lex_state = 56}, + [1728] = {.lex_state = 56}, + [1729] = {.lex_state = 56}, + [1730] = {.lex_state = 123}, + [1731] = {.lex_state = 56}, + [1732] = {.lex_state = 56}, + [1733] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1734] = {.lex_state = 56}, + [1735] = {.lex_state = 56}, + [1736] = {.lex_state = 123}, + [1737] = {.lex_state = 56}, + [1738] = {.lex_state = 123}, + [1739] = {.lex_state = 56}, + [1740] = {.lex_state = 56}, + [1741] = {.lex_state = 56}, + [1742] = {.lex_state = 56}, [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 53}, - [1745] = {.lex_state = 120}, - [1746] = {.lex_state = 120}, - [1747] = {.lex_state = 120}, + [1744] = {.lex_state = 56}, + [1745] = {.lex_state = 56}, + [1746] = {.lex_state = 56}, + [1747] = {.lex_state = 56}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 53}, - [1752] = {.lex_state = 120}, - [1753] = {.lex_state = 120}, - [1754] = {.lex_state = 120}, - [1755] = {.lex_state = 33}, - [1756] = {.lex_state = 53}, - [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 120}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 120}, - [1763] = {.lex_state = 120}, - [1764] = {.lex_state = 33}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 53}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 120}, - [1774] = {.lex_state = 45}, - [1775] = {.lex_state = 44}, - [1776] = {.lex_state = 44}, - [1777] = {.lex_state = 44}, - [1778] = {.lex_state = 120}, - [1779] = {.lex_state = 44}, - [1780] = {.lex_state = 0}, + [1749] = {.lex_state = 56}, + [1750] = {.lex_state = 56}, + [1751] = {.lex_state = 123}, + [1752] = {.lex_state = 56}, + [1753] = {.lex_state = 56}, + [1754] = {.lex_state = 56}, + [1755] = {.lex_state = 56}, + [1756] = {.lex_state = 56}, + [1757] = {.lex_state = 56}, + [1758] = {.lex_state = 123}, + [1759] = {.lex_state = 56}, + [1760] = {.lex_state = 123}, + [1761] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1762] = {.lex_state = 56}, + [1763] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1764] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1765] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1766] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1767] = {.lex_state = 56}, + [1768] = {.lex_state = 123}, + [1769] = {.lex_state = 123}, + [1770] = {.lex_state = 56}, + [1771] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1772] = {.lex_state = 56}, + [1773] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1774] = {.lex_state = 123}, + [1775] = {.lex_state = 123}, + [1776] = {.lex_state = 0}, + [1777] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1778] = {.lex_state = 0}, + [1779] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1780] = {.lex_state = 59, .reserved_word_set_id = 1}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 44}, - [1783] = {.lex_state = 34}, - [1784] = {.lex_state = 34}, - [1785] = {.lex_state = 53}, - [1786] = {.lex_state = 34}, - [1787] = {.lex_state = 34}, - [1788] = {.lex_state = 44}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 44}, - [1793] = {.lex_state = 44}, - [1794] = {.lex_state = 34}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 44}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 53}, - [1800] = {.lex_state = 34}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 34}, - [1803] = {.lex_state = 34}, - [1804] = {.lex_state = 44}, - [1805] = {.lex_state = 44}, - [1806] = {.lex_state = 34}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 34}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 34}, - [1813] = {.lex_state = 44}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 34}, - [1818] = {.lex_state = 44}, - [1819] = {.lex_state = 34}, - [1820] = {.lex_state = 34}, - [1821] = {.lex_state = 53}, - [1822] = {.lex_state = 34}, + [1782] = {.lex_state = 56}, + [1783] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1784] = {.lex_state = 59, .reserved_word_set_id = 1}, + [1785] = {.lex_state = 56}, + [1786] = {.lex_state = 56}, + [1787] = {.lex_state = 56}, + [1788] = {.lex_state = 48}, + [1789] = {.lex_state = 56}, + [1790] = {.lex_state = 56}, + [1791] = {.lex_state = 56}, + [1792] = {.lex_state = 56}, + [1793] = {.lex_state = 56}, + [1794] = {.lex_state = 56}, + [1795] = {.lex_state = 56}, + [1796] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1797] = {.lex_state = 56}, + [1798] = {.lex_state = 56}, + [1799] = {.lex_state = 56}, + [1800] = {.lex_state = 56}, + [1801] = {.lex_state = 56}, + [1802] = {.lex_state = 56}, + [1803] = {.lex_state = 56}, + [1804] = {.lex_state = 56}, + [1805] = {.lex_state = 56}, + [1806] = {.lex_state = 56}, + [1807] = {.lex_state = 56}, + [1808] = {.lex_state = 56}, + [1809] = {.lex_state = 56}, + [1810] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1811] = {.lex_state = 56}, + [1812] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1813] = {.lex_state = 0}, + [1814] = {.lex_state = 56}, + [1815] = {.lex_state = 56}, + [1816] = {.lex_state = 56}, + [1817] = {.lex_state = 56}, + [1818] = {.lex_state = 123}, + [1819] = {.lex_state = 33}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 56}, + [1822] = {.lex_state = 53, .reserved_word_set_id = 1}, [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 53}, - [1825] = {.lex_state = 53}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 34}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 44}, - [1830] = {.lex_state = 34}, - [1831] = {.lex_state = 44}, + [1824] = {.lex_state = 0}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 53, .reserved_word_set_id = 1}, + [1827] = {.lex_state = 33}, + [1828] = {.lex_state = 56}, + [1829] = {.lex_state = 33}, + [1830] = {.lex_state = 33}, + [1831] = {.lex_state = 53, .reserved_word_set_id = 1}, [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 53}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 44}, - [1836] = {.lex_state = 44}, + [1833] = {.lex_state = 38}, + [1834] = {.lex_state = 48}, + [1835] = {.lex_state = 56}, + [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 0}, + [1838] = {.lex_state = 38}, + [1839] = {.lex_state = 33}, [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 53}, - [1843] = {.lex_state = 120}, - [1844] = {.lex_state = 34}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 44}, - [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 53}, - [1853] = {.lex_state = 120}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 53}, + [1841] = {.lex_state = 38}, + [1842] = {.lex_state = 0}, + [1843] = {.lex_state = 40}, + [1844] = {.lex_state = 38}, + [1845] = {.lex_state = 38}, + [1846] = {.lex_state = 40}, + [1847] = {.lex_state = 38}, + [1848] = {.lex_state = 33}, + [1849] = {.lex_state = 123}, + [1850] = {.lex_state = 56}, + [1851] = {.lex_state = 56}, + [1852] = {.lex_state = 40}, + [1853] = {.lex_state = 38}, + [1854] = {.lex_state = 40}, + [1855] = {.lex_state = 33}, [1856] = {.lex_state = 0}, [1857] = {.lex_state = 0}, [1858] = {.lex_state = 0}, [1859] = {.lex_state = 0}, [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 34}, + [1861] = {.lex_state = 35}, [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 120}, - [1865] = {.lex_state = 44}, + [1864] = {.lex_state = 0}, + [1865] = {.lex_state = 0}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 53}, - [1868] = {.lex_state = 34}, - [1869] = {.lex_state = 53}, - [1870] = {.lex_state = 44}, + [1867] = {.lex_state = 0}, + [1868] = {.lex_state = 0}, + [1869] = {.lex_state = 0}, + [1870] = {.lex_state = 0}, [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 53}, + [1872] = {.lex_state = 0}, [1873] = {.lex_state = 0}, [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 44}, - [1877] = {.lex_state = 53}, + [1876] = {.lex_state = 0}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 34}, + [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 34}, - [1882] = {.lex_state = 34}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 44}, + [1887] = {.lex_state = 0}, [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 53}, - [1890] = {.lex_state = 53}, - [1891] = {.lex_state = 44}, - [1892] = {.lex_state = 120}, - [1893] = {.lex_state = 44}, - [1894] = {.lex_state = 44}, - [1895] = {.lex_state = 53}, - [1896] = {.lex_state = 44}, - [1897] = {.lex_state = 44}, - [1898] = {.lex_state = 34}, - [1899] = {.lex_state = 44}, + [1889] = {.lex_state = 0}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1892] = {.lex_state = 0}, + [1893] = {.lex_state = 0}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 0}, + [1896] = {.lex_state = 0}, + [1897] = {.lex_state = 0}, + [1898] = {.lex_state = 0}, + [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 53}, + [1901] = {.lex_state = 0}, [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 44}, - [1904] = {.lex_state = 53}, + [1903] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 44}, - [1908] = {.lex_state = 0}, + [1907] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1908] = {.lex_state = 40}, [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 0}, + [1910] = {.lex_state = 40}, [1911] = {.lex_state = 0}, [1912] = {.lex_state = 0}, [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 53}, - [1915] = {.lex_state = 53}, - [1916] = {.lex_state = 53}, - [1917] = {.lex_state = 44}, + [1914] = {.lex_state = 0}, + [1915] = {.lex_state = 48}, + [1916] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1917] = {.lex_state = 56, .reserved_word_set_id = 1}, [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 44}, - [1920] = {.lex_state = 53}, + [1919] = {.lex_state = 0}, + [1920] = {.lex_state = 0}, [1921] = {.lex_state = 0}, [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 53}, - [1924] = {.lex_state = 44}, + [1923] = {.lex_state = 48}, + [1924] = {.lex_state = 0}, [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 44}, - [1927] = {.lex_state = 44}, + [1926] = {.lex_state = 0}, + [1927] = {.lex_state = 0}, [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, + [1929] = {.lex_state = 35}, [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 53}, - [1932] = {.lex_state = 53}, + [1931] = {.lex_state = 0}, + [1932] = {.lex_state = 0}, [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 44}, - [1935] = {.lex_state = 53}, - [1936] = {.lex_state = 44}, + [1934] = {.lex_state = 0}, + [1935] = {.lex_state = 48}, + [1936] = {.lex_state = 56, .reserved_word_set_id = 1}, [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 53}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 34}, + [1939] = {.lex_state = 40}, + [1940] = {.lex_state = 0}, + [1941] = {.lex_state = 35}, + [1942] = {.lex_state = 0}, [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 53}, - [1946] = {.lex_state = 53}, - [1947] = {.lex_state = 44}, - [1948] = {.lex_state = 34}, - [1949] = {.lex_state = 0}, + [1945] = {.lex_state = 0}, + [1946] = {.lex_state = 0}, + [1947] = {.lex_state = 0}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 48}, [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 53}, - [1952] = {.lex_state = 120}, + [1951] = {.lex_state = 0}, + [1952] = {.lex_state = 35}, [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 44}, - [1955] = {.lex_state = 34}, - [1956] = {.lex_state = 53}, + [1954] = {.lex_state = 0}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 0}, [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 44}, + [1958] = {.lex_state = 0}, [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 53}, + [1960] = {.lex_state = 0}, [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 44}, - [1963] = {.lex_state = 120}, + [1962] = {.lex_state = 56, .reserved_word_set_id = 1}, + [1963] = {.lex_state = 48}, [1964] = {.lex_state = 0}, [1965] = {.lex_state = 0}, - [1966] = {.lex_state = 53}, - [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 53}, - [1970] = {.lex_state = 53}, - [1971] = {.lex_state = 53}, - [1972] = {.lex_state = 44}, - [1973] = {.lex_state = 0}, + [1966] = {.lex_state = 0}, + [1967] = {.lex_state = 48}, + [1968] = {.lex_state = 34}, + [1969] = {.lex_state = 0}, + [1970] = {.lex_state = 0}, + [1971] = {.lex_state = 123}, + [1972] = {.lex_state = 34}, + [1973] = {.lex_state = 34}, [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 120}, - [1976] = {.lex_state = 44}, - [1977] = {.lex_state = 120}, - [1978] = {.lex_state = 120}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 44}, + [1975] = {.lex_state = 0}, + [1976] = {.lex_state = 0}, + [1977] = {.lex_state = 0}, + [1978] = {.lex_state = 56}, + [1979] = {.lex_state = 34}, + [1980] = {.lex_state = 34}, [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 0}, + [1982] = {.lex_state = 34}, [1983] = {.lex_state = 0}, [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 120}, - [1986] = {.lex_state = 44}, - [1987] = {.lex_state = 44}, - [1988] = {.lex_state = 53}, - [1989] = {.lex_state = 34}, + [1985] = {.lex_state = 0}, + [1986] = {.lex_state = 34}, + [1987] = {.lex_state = 0}, + [1988] = {.lex_state = 0}, + [1989] = {.lex_state = 56, .reserved_word_set_id = 1}, [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 120}, - [1992] = {.lex_state = 0}, - [1993] = {.lex_state = 44}, + [1991] = {.lex_state = 56}, + [1992] = {.lex_state = 34}, + [1993] = {.lex_state = 123}, [1994] = {.lex_state = 0}, [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 53}, + [1996] = {.lex_state = 34}, [1997] = {.lex_state = 0}, - [1998] = {.lex_state = 0}, + [1998] = {.lex_state = 123}, [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 120}, - [2001] = {.lex_state = 53}, - [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 53}, - [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 44}, - [2006] = {.lex_state = 34}, - [2007] = {.lex_state = 0}, + [2000] = {.lex_state = 123}, + [2001] = {.lex_state = 0}, + [2002] = {.lex_state = 123}, + [2003] = {.lex_state = 34}, + [2004] = {.lex_state = 34}, + [2005] = {.lex_state = 0}, + [2006] = {.lex_state = 0}, + [2007] = {.lex_state = 34}, [2008] = {.lex_state = 0}, - [2009] = {.lex_state = 44}, - [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 53}, - [2012] = {.lex_state = 44}, - [2013] = {.lex_state = 34}, - [2014] = {.lex_state = 0}, - [2015] = {.lex_state = 44}, - [2016] = {.lex_state = 120}, - [2017] = {.lex_state = 44}, + [2009] = {.lex_state = 48}, + [2010] = {.lex_state = 34}, + [2011] = {.lex_state = 0}, + [2012] = {.lex_state = 123}, + [2013] = {.lex_state = 123}, + [2014] = {.lex_state = 123}, + [2015] = {.lex_state = 123}, + [2016] = {.lex_state = 0}, + [2017] = {.lex_state = 0}, [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 120}, - [2020] = {.lex_state = 0}, + [2019] = {.lex_state = 0}, + [2020] = {.lex_state = 123}, [2021] = {.lex_state = 34}, - [2022] = {.lex_state = 120}, + [2022] = {.lex_state = 123}, + [2023] = {.lex_state = 0}, + [2024] = {.lex_state = 34}, + [2025] = {.lex_state = 0}, + [2026] = {.lex_state = 0}, + [2027] = {.lex_state = 123}, + [2028] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2029] = {.lex_state = 123}, + [2030] = {.lex_state = 48}, + [2031] = {.lex_state = 56}, + [2032] = {.lex_state = 34}, + [2033] = {.lex_state = 0}, + [2034] = {.lex_state = 123}, + [2035] = {.lex_state = 34}, + [2036] = {.lex_state = 0}, + [2037] = {.lex_state = 0}, + [2038] = {.lex_state = 47}, + [2039] = {.lex_state = 0}, + [2040] = {.lex_state = 0}, + [2041] = {.lex_state = 35}, + [2042] = {.lex_state = 47}, + [2043] = {.lex_state = 0}, + [2044] = {.lex_state = 35}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 47}, + [2047] = {.lex_state = 47}, + [2048] = {.lex_state = 47}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 35}, + [2051] = {.lex_state = 47}, + [2052] = {.lex_state = 0}, + [2053] = {.lex_state = 0}, + [2054] = {.lex_state = 47}, + [2055] = {.lex_state = 47}, + [2056] = {.lex_state = 0}, + [2057] = {.lex_state = 35}, + [2058] = {.lex_state = 0}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2061] = {.lex_state = 0}, + [2062] = {.lex_state = 0}, + [2063] = {.lex_state = 47}, + [2064] = {.lex_state = 0}, + [2065] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2066] = {.lex_state = 47}, + [2067] = {.lex_state = 35}, + [2068] = {.lex_state = 0}, + [2069] = {.lex_state = 0}, + [2070] = {.lex_state = 0}, + [2071] = {.lex_state = 0}, + [2072] = {.lex_state = 0}, + [2073] = {.lex_state = 0}, + [2074] = {.lex_state = 0}, + [2075] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2076] = {.lex_state = 56}, + [2077] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2078] = {.lex_state = 47}, + [2079] = {.lex_state = 0}, + [2080] = {.lex_state = 0}, + [2081] = {.lex_state = 0}, + [2082] = {.lex_state = 35}, + [2083] = {.lex_state = 0}, + [2084] = {.lex_state = 35}, + [2085] = {.lex_state = 0}, + [2086] = {.lex_state = 0}, + [2087] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2088] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2089] = {.lex_state = 0}, + [2090] = {.lex_state = 47}, + [2091] = {.lex_state = 47}, + [2092] = {.lex_state = 0}, + [2093] = {.lex_state = 47}, + [2094] = {.lex_state = 0}, + [2095] = {.lex_state = 0}, + [2096] = {.lex_state = 0}, + [2097] = {.lex_state = 47}, + [2098] = {.lex_state = 0}, + [2099] = {.lex_state = 35}, + [2100] = {.lex_state = 0}, + [2101] = {.lex_state = 47}, + [2102] = {.lex_state = 47}, + [2103] = {.lex_state = 0}, + [2104] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2105] = {.lex_state = 0}, + [2106] = {.lex_state = 47}, + [2107] = {.lex_state = 35}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 47}, + [2110] = {.lex_state = 123}, + [2111] = {.lex_state = 35}, + [2112] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2113] = {.lex_state = 0}, + [2114] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2115] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2116] = {.lex_state = 0}, + [2117] = {.lex_state = 0}, + [2118] = {.lex_state = 0}, + [2119] = {.lex_state = 47}, + [2120] = {.lex_state = 0}, + [2121] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2122] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2123] = {.lex_state = 47}, + [2124] = {.lex_state = 0}, + [2125] = {.lex_state = 35}, + [2126] = {.lex_state = 123}, + [2127] = {.lex_state = 0}, + [2128] = {.lex_state = 56}, + [2129] = {.lex_state = 0}, + [2130] = {.lex_state = 35}, + [2131] = {.lex_state = 47}, + [2132] = {.lex_state = 47}, + [2133] = {.lex_state = 47}, + [2134] = {.lex_state = 0}, + [2135] = {.lex_state = 0}, + [2136] = {.lex_state = 0}, + [2137] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2138] = {.lex_state = 0}, + [2139] = {.lex_state = 35}, + [2140] = {.lex_state = 35}, + [2141] = {.lex_state = 0}, + [2142] = {.lex_state = 47}, + [2143] = {.lex_state = 35}, + [2144] = {.lex_state = 0}, + [2145] = {.lex_state = 47}, + [2146] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2147] = {.lex_state = 35}, + [2148] = {.lex_state = 0}, + [2149] = {.lex_state = 47}, + [2150] = {.lex_state = 47}, + [2151] = {.lex_state = 0}, + [2152] = {.lex_state = 0}, + [2153] = {.lex_state = 35}, + [2154] = {.lex_state = 35}, + [2155] = {.lex_state = 35}, + [2156] = {.lex_state = 0}, + [2157] = {.lex_state = 0}, + [2158] = {.lex_state = 0}, + [2159] = {.lex_state = 0}, + [2160] = {.lex_state = 0}, + [2161] = {.lex_state = 0}, + [2162] = {.lex_state = 35}, + [2163] = {.lex_state = 0}, + [2164] = {.lex_state = 47}, + [2165] = {.lex_state = 47}, + [2166] = {.lex_state = 56}, + [2167] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2168] = {.lex_state = 0}, + [2169] = {.lex_state = 47}, + [2170] = {.lex_state = 47}, + [2171] = {.lex_state = 35}, + [2172] = {.lex_state = 0}, + [2173] = {.lex_state = 0}, + [2174] = {.lex_state = 35}, + [2175] = {.lex_state = 0}, + [2176] = {.lex_state = 0}, + [2177] = {.lex_state = 0}, + [2178] = {.lex_state = 0}, + [2179] = {.lex_state = 0}, + [2180] = {.lex_state = 35}, + [2181] = {.lex_state = 0}, + [2182] = {.lex_state = 0}, + [2183] = {.lex_state = 47}, + [2184] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2185] = {.lex_state = 47}, + [2186] = {.lex_state = 0}, + [2187] = {.lex_state = 0}, + [2188] = {.lex_state = 0}, + [2189] = {.lex_state = 47}, + [2190] = {.lex_state = 0}, + [2191] = {.lex_state = 35}, + [2192] = {.lex_state = 35}, + [2193] = {.lex_state = 0}, + [2194] = {.lex_state = 0}, + [2195] = {.lex_state = 56}, + [2196] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2197] = {.lex_state = 35}, + [2198] = {.lex_state = 0}, + [2199] = {.lex_state = 56}, + [2200] = {.lex_state = 47}, + [2201] = {.lex_state = 123}, + [2202] = {.lex_state = 0}, + [2203] = {.lex_state = 35}, + [2204] = {.lex_state = 0}, + [2205] = {.lex_state = 0}, + [2206] = {.lex_state = 35}, + [2207] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2208] = {.lex_state = 47}, + [2209] = {.lex_state = 0}, + [2210] = {.lex_state = 0}, + [2211] = {.lex_state = 0}, + [2212] = {.lex_state = 0}, + [2213] = {.lex_state = 47}, + [2214] = {.lex_state = 47}, + [2215] = {.lex_state = 0}, + [2216] = {.lex_state = 56}, + [2217] = {.lex_state = 0}, + [2218] = {.lex_state = 56}, + [2219] = {.lex_state = 47}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 56}, + [2222] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2223] = {.lex_state = 0}, + [2224] = {.lex_state = 0}, + [2225] = {.lex_state = 56}, + [2226] = {.lex_state = 0}, + [2227] = {.lex_state = 47}, + [2228] = {.lex_state = 0}, + [2229] = {.lex_state = 0}, + [2230] = {.lex_state = 0}, + [2231] = {.lex_state = 47}, + [2232] = {.lex_state = 0}, + [2233] = {.lex_state = 47}, + [2234] = {.lex_state = 0}, + [2235] = {.lex_state = 0}, + [2236] = {.lex_state = 35}, + [2237] = {.lex_state = 123}, + [2238] = {.lex_state = 0}, + [2239] = {.lex_state = 47}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 0}, + [2242] = {.lex_state = 47}, + [2243] = {.lex_state = 0}, + [2244] = {.lex_state = 56}, + [2245] = {.lex_state = 47}, + [2246] = {.lex_state = 35}, + [2247] = {.lex_state = 0}, + [2248] = {.lex_state = 47}, + [2249] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2250] = {.lex_state = 0}, + [2251] = {.lex_state = 47}, + [2252] = {.lex_state = 0}, + [2253] = {.lex_state = 123}, + [2254] = {.lex_state = 0}, + [2255] = {.lex_state = 56}, + [2256] = {.lex_state = 56}, + [2257] = {.lex_state = 0}, + [2258] = {.lex_state = 56}, + [2259] = {.lex_state = 0}, + [2260] = {.lex_state = 47}, + [2261] = {.lex_state = 0}, + [2262] = {.lex_state = 123}, + [2263] = {.lex_state = 0}, + [2264] = {.lex_state = 0}, + [2265] = {.lex_state = 56}, + [2266] = {.lex_state = 0}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 0}, + [2269] = {.lex_state = 35}, + [2270] = {.lex_state = 47}, + [2271] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2272] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2273] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2274] = {.lex_state = 123}, + [2275] = {.lex_state = 0}, + [2276] = {.lex_state = 56, .reserved_word_set_id = 1}, + [2277] = {.lex_state = 47}, + [2278] = {.lex_state = 47}, +}; + +static const TSSymbol ts_reserved_words[21][MAX_RESERVED_WORD_SET_SIZE] = { + [1] = { + anon_sym_typedef, + anon_sym_extern, + anon_sym_const, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym__Generic, + sym_true, + sym_false, + anon_sym_nullptr, + }, + [2] = { + anon_sym_else, + }, + [3] = { + anon_sym_typedef, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_else, + }, + [4] = { + anon_sym_case, + anon_sym_default, + }, + [5] = { + anon_sym_typedef, + anon_sym_else, + }, + [6] = { + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + }, + [7] = { + anon_sym_typedef, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + }, + [8] = { + anon_sym_typedef, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + }, + [9] = { + anon_sym_typedef, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + }, + [10] = { + anon_sym_typedef, + anon_sym_extern, + anon_sym_const, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + }, + [11] = { + anon_sym_typedef, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym__Generic, + sym_true, + sym_false, + anon_sym_nullptr, + }, + [12] = { + anon_sym_typedef, + anon_sym_extern, + anon_sym_const, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_else, + }, + [13] = { + anon_sym_typedef, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym__Generic, + sym_true, + sym_false, + anon_sym_nullptr, + }, + [14] = { + anon_sym_typedef, + anon_sym_extern, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + }, + [15] = { + anon_sym_typedef, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym__Generic, + sym_true, + sym_false, + anon_sym_nullptr, + }, + [16] = { + anon_sym_typedef, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym__Generic, + sym_true, + sym_false, + anon_sym_nullptr, + }, + [17] = { + anon_sym_typedef, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym__Generic, + sym_true, + sym_false, + anon_sym_nullptr, + }, + [18] = { + anon_sym_typedef, + anon_sym_extern, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym__Generic, + sym_true, + sym_false, + anon_sym_nullptr, + }, + [19] = { + anon_sym_typedef, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym__Generic, + sym_true, + sym_false, + anon_sym_nullptr, + }, + [20] = { + anon_sym_typedef, + anon_sym_extern, + anon_sym_const, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym__Generic, + sym_true, + sym_false, + anon_sym_nullptr, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [aux_sym_preproc_include_token1] = ACTIONS(1), @@ -11621,6 +12667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1), [anon_sym___attribute__] = ACTIONS(1), [anon_sym___attribute] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), [anon_sym_LBRACK_LBRACK] = ACTIONS(1), [anon_sym___declspec] = ACTIONS(1), [anon_sym___based] = ACTIONS(1), @@ -11653,7 +12700,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1), [anon_sym_thread_local] = ACTIONS(1), [anon_sym___thread] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), [anon_sym_constexpr] = ACTIONS(1), [anon_sym_volatile] = ACTIONS(1), [anon_sym_restrict] = ACTIONS(1), @@ -11729,79 +12775,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1), [sym_comment] = ACTIONS(3), }, - [1] = { - [sym_translation_unit] = STATE(1981), - [sym__top_level_item] = STATE(44), - [sym_preproc_include] = STATE(44), - [sym_preproc_def] = STATE(44), - [sym_preproc_function_def] = STATE(44), - [sym_preproc_call] = STATE(44), - [sym_preproc_if] = STATE(44), - [sym_preproc_ifdef] = STATE(44), - [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(338), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1136), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(691), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(800), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(362), - [sym__top_level_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym__top_level_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_case_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym_expression] = STATE(1116), - [sym__string] = STATE(1119), - [sym_conditional_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1119), - [sym_pointer_expression] = STATE(935), - [sym_unary_expression] = STATE(1119), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(1119), - [sym_cast_expression] = STATE(1119), - [sym_sizeof_expression] = STATE(1119), - [sym_alignof_expression] = STATE(1119), - [sym_offsetof_expression] = STATE(1119), - [sym_generic_expression] = STATE(1119), - [sym_subscript_expression] = STATE(935), - [sym_call_expression] = STATE(935), - [sym_gnu_asm_expression] = STATE(1119), - [sym_extension_expression] = STATE(1119), - [sym_field_expression] = STATE(935), - [sym_compound_literal_expression] = STATE(1119), - [sym_parenthesized_expression] = STATE(935), - [sym_char_literal] = STATE(1119), - [sym_concatenated_string] = STATE(1119), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(1119), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [STATE(1)] = { + [sym_translation_unit] = STATE(2049), + [sym__top_level_item] = STATE(43), + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym__old_style_function_definition] = STATE(373), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1424), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(899), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1009), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(375), + [sym__top_level_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym__top_level_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_case_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym_expression] = STATE(1394), + [sym__string] = STATE(596), + [sym_conditional_expression] = STATE(596), + [sym_assignment_expression] = STATE(596), + [sym_pointer_expression] = STATE(1170), + [sym_unary_expression] = STATE(596), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(596), + [sym_cast_expression] = STATE(596), + [sym_sizeof_expression] = STATE(596), + [sym_alignof_expression] = STATE(596), + [sym_offsetof_expression] = STATE(596), + [sym_generic_expression] = STATE(596), + [sym_subscript_expression] = STATE(1170), + [sym_call_expression] = STATE(1170), + [sym_gnu_asm_expression] = STATE(596), + [sym_extension_expression] = STATE(596), + [sym_field_expression] = STATE(1170), + [sym_compound_literal_expression] = STATE(596), + [sym_parenthesized_expression] = STATE(1170), + [sym_char_literal] = STATE(596), + [sym_concatenated_string] = STATE(596), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(596), + [sym__empty_declaration] = STATE(43), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(386), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -11823,37 +12869,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), @@ -11901,84 +12947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [2] = { - [sym__block_item] = STATE(3), - [sym_preproc_include] = STATE(3), - [sym_preproc_def] = STATE(3), - [sym_preproc_function_def] = STATE(3), - [sym_preproc_call] = STATE(3), - [sym_preproc_if] = STATE(3), - [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(1894), - [sym_preproc_elif] = STATE(1894), - [sym_preproc_elifdef] = STATE(1894), - [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(129), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), - [sym_statement] = STATE(3), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [STATE(2)] = { + [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(2048), + [sym_preproc_elif] = STATE(2048), + [sym_preproc_elifdef] = STATE(2048), + [sym_function_definition] = STATE(20), + [sym__old_style_function_definition] = STATE(183), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), + [sym_statement] = STATE(20), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), @@ -11991,72 +13037,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -12067,7 +13113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -12078,95 +13124,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [3] = { - [sym__block_item] = STATE(22), - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1893), - [sym_preproc_elif] = STATE(1893), - [sym_preproc_elifdef] = STATE(1893), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [STATE(3)] = { + [sym__block_item] = STATE(5), + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_call] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(2245), + [sym_preproc_elif] = STATE(2245), + [sym_preproc_elifdef] = STATE(2245), + [sym_function_definition] = STATE(5), + [sym__old_style_function_definition] = STATE(183), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), + [sym_statement] = STATE(5), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(165), + [aux_sym_preproc_if_token2] = ACTIONS(175), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -12174,72 +13220,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -12250,7 +13296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -12261,95 +13307,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [4] = { - [sym__block_item] = STATE(5), - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_call] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1846), - [sym_preproc_elif] = STATE(1846), - [sym_preproc_elifdef] = STATE(1846), - [sym_function_definition] = STATE(5), - [sym__old_style_function_definition] = STATE(129), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), - [sym_statement] = STATE(5), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [STATE(4)] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(2097), + [sym_preproc_elif] = STATE(2097), + [sym_preproc_elifdef] = STATE(2097), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(183), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(167), + [aux_sym_preproc_if_token2] = ACTIONS(177), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -12357,72 +13403,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -12433,7 +13479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -12444,13 +13490,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [5] = { + [STATE(5)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -12458,81 +13504,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1936), - [sym_preproc_elif] = STATE(1936), - [sym_preproc_elifdef] = STATE(1936), + [sym_preproc_else] = STATE(2078), + [sym_preproc_elif] = STATE(2078), + [sym_preproc_elifdef] = STATE(2078), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(169), + [aux_sym_preproc_if_token2] = ACTIONS(179), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -12540,72 +13586,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -12616,7 +13662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -12627,13 +13673,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [6] = { + [STATE(6)] = { [sym__block_item] = STATE(8), [sym_preproc_include] = STATE(8), [sym_preproc_def] = STATE(8), @@ -12641,81 +13687,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(8), [sym_preproc_if] = STATE(8), [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(1792), - [sym_preproc_elif] = STATE(1792), - [sym_preproc_elifdef] = STATE(1792), + [sym_preproc_else] = STATE(2093), + [sym_preproc_elif] = STATE(2093), + [sym_preproc_elifdef] = STATE(2093), [sym_function_definition] = STATE(8), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(8), [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(8), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(171), + [aux_sym_preproc_if_token2] = ACTIONS(181), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -12723,72 +13769,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -12799,7 +13845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -12810,13 +13856,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [7] = { + [STATE(7)] = { [sym__block_item] = STATE(9), [sym_preproc_include] = STATE(9), [sym_preproc_def] = STATE(9), @@ -12824,81 +13870,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(9), [sym_preproc_if] = STATE(9), [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1793), - [sym_preproc_elif] = STATE(1793), - [sym_preproc_elifdef] = STATE(1793), + [sym_preproc_else] = STATE(2231), + [sym_preproc_elif] = STATE(2231), + [sym_preproc_elifdef] = STATE(2231), [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(9), [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(9), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(183), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -12906,72 +13952,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -12982,7 +14028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -12993,13 +14039,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [8] = { + [STATE(8)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -13007,81 +14053,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1805), - [sym_preproc_elif] = STATE(1805), - [sym_preproc_elifdef] = STATE(1805), + [sym_preproc_else] = STATE(2169), + [sym_preproc_elif] = STATE(2169), + [sym_preproc_elifdef] = STATE(2169), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(175), + [aux_sym_preproc_if_token2] = ACTIONS(185), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -13089,72 +14135,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -13165,7 +14211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -13176,13 +14222,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [9] = { + [STATE(9)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -13190,81 +14236,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2017), - [sym_preproc_elif] = STATE(2017), - [sym_preproc_elifdef] = STATE(2017), + [sym_preproc_else] = STATE(2150), + [sym_preproc_elif] = STATE(2150), + [sym_preproc_elifdef] = STATE(2150), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(177), + [aux_sym_preproc_if_token2] = ACTIONS(187), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -13272,72 +14318,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -13348,7 +14394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -13359,13 +14405,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [10] = { + [STATE(10)] = { [sym__block_item] = STATE(12), [sym_preproc_include] = STATE(12), [sym_preproc_def] = STATE(12), @@ -13373,81 +14419,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(12), [sym_preproc_if] = STATE(12), [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1987), - [sym_preproc_elif] = STATE(1987), - [sym_preproc_elifdef] = STATE(1987), + [sym_preproc_else] = STATE(2200), + [sym_preproc_elif] = STATE(2200), + [sym_preproc_elifdef] = STATE(2200), [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(12), [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(12), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(179), + [aux_sym_preproc_if_token2] = ACTIONS(189), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -13455,72 +14501,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -13531,7 +14577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -13542,13 +14588,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [11] = { + [STATE(11)] = { [sym__block_item] = STATE(13), [sym_preproc_include] = STATE(13), [sym_preproc_def] = STATE(13), @@ -13556,81 +14602,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(13), [sym_preproc_if] = STATE(13), [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1797), - [sym_preproc_elif] = STATE(1797), - [sym_preproc_elifdef] = STATE(1797), + [sym_preproc_else] = STATE(2063), + [sym_preproc_elif] = STATE(2063), + [sym_preproc_elifdef] = STATE(2063), [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(13), [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(13), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(181), + [aux_sym_preproc_if_token2] = ACTIONS(191), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -13638,72 +14684,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -13714,7 +14760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -13725,13 +14771,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [12] = { + [STATE(12)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -13739,81 +14785,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1813), - [sym_preproc_elif] = STATE(1813), - [sym_preproc_elifdef] = STATE(1813), + [sym_preproc_else] = STATE(2248), + [sym_preproc_elif] = STATE(2248), + [sym_preproc_elifdef] = STATE(2248), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(193), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -13821,72 +14867,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -13897,7 +14943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -13908,13 +14954,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [13] = { + [STATE(13)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -13922,81 +14968,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1919), - [sym_preproc_elif] = STATE(1919), - [sym_preproc_elifdef] = STATE(1919), + [sym_preproc_else] = STATE(2046), + [sym_preproc_elif] = STATE(2046), + [sym_preproc_elifdef] = STATE(2046), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(185), + [aux_sym_preproc_if_token2] = ACTIONS(195), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -14004,72 +15050,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -14080,7 +15126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -14091,13 +15137,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [14] = { + [STATE(14)] = { [sym__block_item] = STATE(16), [sym_preproc_include] = STATE(16), [sym_preproc_def] = STATE(16), @@ -14105,81 +15151,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1924), - [sym_preproc_elif] = STATE(1924), - [sym_preproc_elifdef] = STATE(1924), + [sym_preproc_else] = STATE(2123), + [sym_preproc_elif] = STATE(2123), + [sym_preproc_elifdef] = STATE(2123), [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(16), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(187), + [aux_sym_preproc_if_token2] = ACTIONS(197), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -14187,72 +15233,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -14263,7 +15309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -14274,13 +15320,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [15] = { + [STATE(15)] = { [sym__block_item] = STATE(17), [sym_preproc_include] = STATE(17), [sym_preproc_def] = STATE(17), @@ -14288,81 +15334,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(17), [sym_preproc_if] = STATE(17), [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1865), - [sym_preproc_elif] = STATE(1865), - [sym_preproc_elifdef] = STATE(1865), + [sym_preproc_else] = STATE(2133), + [sym_preproc_elif] = STATE(2133), + [sym_preproc_elifdef] = STATE(2133), [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(199), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -14370,72 +15416,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -14446,7 +15492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -14457,13 +15503,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [16] = { + [STATE(16)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -14471,81 +15517,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1876), - [sym_preproc_elif] = STATE(1876), - [sym_preproc_elifdef] = STATE(1876), + [sym_preproc_else] = STATE(2145), + [sym_preproc_elif] = STATE(2145), + [sym_preproc_elifdef] = STATE(2145), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(191), + [aux_sym_preproc_if_token2] = ACTIONS(201), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -14553,72 +15599,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -14629,7 +15675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -14640,13 +15686,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [17] = { + [STATE(17)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -14654,81 +15700,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1976), - [sym_preproc_elif] = STATE(1976), - [sym_preproc_elifdef] = STATE(1976), + [sym_preproc_else] = STATE(2132), + [sym_preproc_elif] = STATE(2132), + [sym_preproc_elifdef] = STATE(2132), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(193), + [aux_sym_preproc_if_token2] = ACTIONS(203), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -14736,72 +15782,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -14812,7 +15858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -14823,95 +15869,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [18] = { - [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(1917), - [sym_preproc_elif] = STATE(1917), - [sym_preproc_elifdef] = STATE(1917), - [sym_function_definition] = STATE(20), - [sym__old_style_function_definition] = STATE(129), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), - [sym_statement] = STATE(20), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [STATE(18)] = { + [sym__block_item] = STATE(4), + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(2214), + [sym_preproc_elif] = STATE(2214), + [sym_preproc_elifdef] = STATE(2214), + [sym_function_definition] = STATE(4), + [sym__old_style_function_definition] = STATE(183), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), + [sym_statement] = STATE(4), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(195), + [aux_sym_preproc_if_token2] = ACTIONS(205), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -14919,72 +15965,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -14995,7 +16041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -15006,13 +16052,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [19] = { + [STATE(19)] = { [sym__block_item] = STATE(21), [sym_preproc_include] = STATE(21), [sym_preproc_def] = STATE(21), @@ -15020,81 +16066,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(21), [sym_preproc_if] = STATE(21), [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(1958), - [sym_preproc_elif] = STATE(1958), - [sym_preproc_elifdef] = STATE(1958), + [sym_preproc_else] = STATE(2101), + [sym_preproc_elif] = STATE(2101), + [sym_preproc_elifdef] = STATE(2101), [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(21), [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(21), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(197), + [aux_sym_preproc_if_token2] = ACTIONS(207), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -15102,72 +16148,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -15178,7 +16224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -15189,13 +16235,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [20] = { + [STATE(20)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -15203,81 +16249,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1962), - [sym_preproc_elif] = STATE(1962), - [sym_preproc_elifdef] = STATE(1962), + [sym_preproc_else] = STATE(2106), + [sym_preproc_elif] = STATE(2106), + [sym_preproc_elifdef] = STATE(2106), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(199), + [aux_sym_preproc_if_token2] = ACTIONS(209), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -15285,72 +16331,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -15361,7 +16407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -15372,13 +16418,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [21] = { + [STATE(21)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -15386,81 +16432,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2009), - [sym_preproc_elif] = STATE(2009), - [sym_preproc_elifdef] = STATE(2009), + [sym_preproc_else] = STATE(2131), + [sym_preproc_elif] = STATE(2131), + [sym_preproc_elifdef] = STATE(2131), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), [sym_identifier] = ACTIONS(105), [aux_sym_preproc_include_token1] = ACTIONS(107), [aux_sym_preproc_def_token1] = ACTIONS(109), [aux_sym_preproc_if_token1] = ACTIONS(111), - [aux_sym_preproc_if_token2] = ACTIONS(201), + [aux_sym_preproc_if_token2] = ACTIONS(211), [aux_sym_preproc_ifdef_token1] = ACTIONS(115), [aux_sym_preproc_ifdef_token2] = ACTIONS(115), [aux_sym_preproc_else_token1] = ACTIONS(117), @@ -15468,72 +16514,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(121), [aux_sym_preproc_elifdef_token2] = ACTIONS(121), [sym_preproc_directive] = ACTIONS(123), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(137), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -15544,7 +16590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -15555,13 +16601,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [22] = { + [STATE(22)] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -15570,326 +16616,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(129), + [sym__old_style_function_definition] = STATE(183), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1137), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1434), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(674), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(119), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(918), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1035), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(184), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(203), - [aux_sym_preproc_include_token1] = ACTIONS(206), - [aux_sym_preproc_def_token1] = ACTIONS(209), - [aux_sym_preproc_if_token1] = ACTIONS(212), - [aux_sym_preproc_if_token2] = ACTIONS(215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(217), - [aux_sym_preproc_else_token1] = ACTIONS(215), - [aux_sym_preproc_elif_token1] = ACTIONS(215), - [aux_sym_preproc_elifdef_token1] = ACTIONS(215), - [aux_sym_preproc_elifdef_token2] = ACTIONS(215), - [sym_preproc_directive] = ACTIONS(220), - [anon_sym_LPAREN2] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(232), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(235), - [anon_sym___extension__] = ACTIONS(238), - [anon_sym_typedef] = ACTIONS(241), - [anon_sym_extern] = ACTIONS(244), - [anon_sym___attribute__] = ACTIONS(247), - [anon_sym___attribute] = ACTIONS(247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(250), - [anon_sym___declspec] = ACTIONS(253), - [anon_sym___cdecl] = ACTIONS(256), - [anon_sym___clrcall] = ACTIONS(256), - [anon_sym___stdcall] = ACTIONS(256), - [anon_sym___fastcall] = ACTIONS(256), - [anon_sym___thiscall] = ACTIONS(256), - [anon_sym___vectorcall] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_signed] = ACTIONS(262), - [anon_sym_unsigned] = ACTIONS(262), - [anon_sym_long] = ACTIONS(262), - [anon_sym_short] = ACTIONS(262), - [anon_sym_static] = ACTIONS(265), - [anon_sym_auto] = ACTIONS(265), - [anon_sym_register] = ACTIONS(265), - [anon_sym_inline] = ACTIONS(265), - [anon_sym___inline] = ACTIONS(265), - [anon_sym___inline__] = ACTIONS(265), - [anon_sym___forceinline] = ACTIONS(265), - [anon_sym_thread_local] = ACTIONS(265), - [anon_sym___thread] = ACTIONS(265), - [anon_sym_const] = ACTIONS(268), - [anon_sym_constexpr] = ACTIONS(268), - [anon_sym_volatile] = ACTIONS(268), - [anon_sym_restrict] = ACTIONS(268), - [anon_sym___restrict__] = ACTIONS(268), - [anon_sym__Atomic] = ACTIONS(268), - [anon_sym__Noreturn] = ACTIONS(268), - [anon_sym_noreturn] = ACTIONS(268), - [anon_sym__Nonnull] = ACTIONS(268), - [anon_sym_alignas] = ACTIONS(271), - [anon_sym__Alignas] = ACTIONS(271), - [sym_primitive_type] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(277), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_union] = ACTIONS(283), - [anon_sym_if] = ACTIONS(286), - [anon_sym_switch] = ACTIONS(289), - [anon_sym_case] = ACTIONS(292), - [anon_sym_default] = ACTIONS(295), - [anon_sym_while] = ACTIONS(298), - [anon_sym_do] = ACTIONS(301), - [anon_sym_for] = ACTIONS(304), - [anon_sym_return] = ACTIONS(307), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(316), - [anon_sym___try] = ACTIONS(319), - [anon_sym___leave] = ACTIONS(322), - [anon_sym_DASH_DASH] = ACTIONS(325), - [anon_sym_PLUS_PLUS] = ACTIONS(325), - [anon_sym_sizeof] = ACTIONS(328), - [anon_sym___alignof__] = ACTIONS(331), - [anon_sym___alignof] = ACTIONS(331), - [anon_sym__alignof] = ACTIONS(331), - [anon_sym_alignof] = ACTIONS(331), - [anon_sym__Alignof] = ACTIONS(331), - [anon_sym_offsetof] = ACTIONS(334), - [anon_sym__Generic] = ACTIONS(337), - [anon_sym_asm] = ACTIONS(340), - [anon_sym___asm__] = ACTIONS(340), - [anon_sym___asm] = ACTIONS(340), - [sym_number_literal] = ACTIONS(343), - [anon_sym_L_SQUOTE] = ACTIONS(346), - [anon_sym_u_SQUOTE] = ACTIONS(346), - [anon_sym_U_SQUOTE] = ACTIONS(346), - [anon_sym_u8_SQUOTE] = ACTIONS(346), - [anon_sym_SQUOTE] = ACTIONS(346), - [anon_sym_L_DQUOTE] = ACTIONS(349), - [anon_sym_u_DQUOTE] = ACTIONS(349), - [anon_sym_U_DQUOTE] = ACTIONS(349), - [anon_sym_u8_DQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [sym_true] = ACTIONS(352), - [sym_false] = ACTIONS(352), - [anon_sym_NULL] = ACTIONS(355), - [anon_sym_nullptr] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - }, - [23] = { - [sym__block_item] = STATE(31), - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(213), + [aux_sym_preproc_include_token1] = ACTIONS(216), + [aux_sym_preproc_def_token1] = ACTIONS(219), + [aux_sym_preproc_if_token1] = ACTIONS(222), + [aux_sym_preproc_if_token2] = ACTIONS(225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(227), + [aux_sym_preproc_else_token1] = ACTIONS(225), + [aux_sym_preproc_elif_token1] = ACTIONS(225), + [aux_sym_preproc_elifdef_token1] = ACTIONS(225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(225), + [sym_preproc_directive] = ACTIONS(230), + [anon_sym_LPAREN2] = ACTIONS(233), + [anon_sym_BANG] = ACTIONS(236), + [anon_sym_TILDE] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(242), + [anon_sym_AMP] = ACTIONS(242), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym___extension__] = ACTIONS(248), + [anon_sym_typedef] = ACTIONS(251), + [anon_sym_extern] = ACTIONS(254), + [anon_sym___attribute__] = ACTIONS(257), + [anon_sym___attribute] = ACTIONS(257), + [anon_sym_const] = ACTIONS(260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(263), + [anon_sym___declspec] = ACTIONS(266), + [anon_sym___cdecl] = ACTIONS(269), + [anon_sym___clrcall] = ACTIONS(269), + [anon_sym___stdcall] = ACTIONS(269), + [anon_sym___fastcall] = ACTIONS(269), + [anon_sym___thiscall] = ACTIONS(269), + [anon_sym___vectorcall] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_signed] = ACTIONS(275), + [anon_sym_unsigned] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_static] = ACTIONS(278), + [anon_sym_auto] = ACTIONS(278), + [anon_sym_register] = ACTIONS(278), + [anon_sym_inline] = ACTIONS(278), + [anon_sym___inline] = ACTIONS(278), + [anon_sym___inline__] = ACTIONS(278), + [anon_sym___forceinline] = ACTIONS(278), + [anon_sym_thread_local] = ACTIONS(278), + [anon_sym___thread] = ACTIONS(278), + [anon_sym_constexpr] = ACTIONS(260), + [anon_sym_volatile] = ACTIONS(260), + [anon_sym_restrict] = ACTIONS(260), + [anon_sym___restrict__] = ACTIONS(260), + [anon_sym__Atomic] = ACTIONS(260), + [anon_sym__Noreturn] = ACTIONS(260), + [anon_sym_noreturn] = ACTIONS(260), + [anon_sym__Nonnull] = ACTIONS(260), + [anon_sym_alignas] = ACTIONS(281), + [anon_sym__Alignas] = ACTIONS(281), + [sym_primitive_type] = ACTIONS(284), + [anon_sym_enum] = ACTIONS(287), + [anon_sym_struct] = ACTIONS(290), + [anon_sym_union] = ACTIONS(293), + [anon_sym_if] = ACTIONS(296), + [anon_sym_switch] = ACTIONS(299), + [anon_sym_case] = ACTIONS(302), + [anon_sym_default] = ACTIONS(305), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(314), + [anon_sym_return] = ACTIONS(317), + [anon_sym_break] = ACTIONS(320), + [anon_sym_continue] = ACTIONS(323), + [anon_sym_goto] = ACTIONS(326), + [anon_sym___try] = ACTIONS(329), + [anon_sym___leave] = ACTIONS(332), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(338), + [anon_sym___alignof__] = ACTIONS(341), + [anon_sym___alignof] = ACTIONS(341), + [anon_sym__alignof] = ACTIONS(341), + [anon_sym_alignof] = ACTIONS(341), + [anon_sym__Alignof] = ACTIONS(341), + [anon_sym_offsetof] = ACTIONS(344), + [anon_sym__Generic] = ACTIONS(347), + [anon_sym_asm] = ACTIONS(350), + [anon_sym___asm__] = ACTIONS(350), + [anon_sym___asm] = ACTIONS(350), + [sym_number_literal] = ACTIONS(353), + [anon_sym_L_SQUOTE] = ACTIONS(356), + [anon_sym_u_SQUOTE] = ACTIONS(356), + [anon_sym_U_SQUOTE] = ACTIONS(356), + [anon_sym_u8_SQUOTE] = ACTIONS(356), + [anon_sym_SQUOTE] = ACTIONS(356), + [anon_sym_L_DQUOTE] = ACTIONS(359), + [anon_sym_u_DQUOTE] = ACTIONS(359), + [anon_sym_U_DQUOTE] = ACTIONS(359), + [anon_sym_u8_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_true] = ACTIONS(362), + [sym_false] = ACTIONS(362), + [anon_sym_NULL] = ACTIONS(365), + [anon_sym_nullptr] = ACTIONS(365), + [sym_comment] = ACTIONS(3), + }, + [STATE(23)] = { + [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_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(25), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -15900,7 +16946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -15911,337 +16957,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [24] = { - [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_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(408), - [aux_sym_preproc_include_token1] = ACTIONS(411), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(423), - [anon_sym_LPAREN2] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(232), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym___extension__] = ACTIONS(429), - [anon_sym_typedef] = ACTIONS(432), - [anon_sym_extern] = ACTIONS(435), - [anon_sym___attribute__] = ACTIONS(247), - [anon_sym___attribute] = ACTIONS(247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(250), - [anon_sym___declspec] = ACTIONS(253), - [anon_sym___cdecl] = ACTIONS(256), - [anon_sym___clrcall] = ACTIONS(256), - [anon_sym___stdcall] = ACTIONS(256), - [anon_sym___fastcall] = ACTIONS(256), - [anon_sym___thiscall] = ACTIONS(256), - [anon_sym___vectorcall] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_signed] = ACTIONS(262), - [anon_sym_unsigned] = ACTIONS(262), - [anon_sym_long] = ACTIONS(262), - [anon_sym_short] = ACTIONS(262), - [anon_sym_static] = ACTIONS(265), - [anon_sym_auto] = ACTIONS(265), - [anon_sym_register] = ACTIONS(265), - [anon_sym_inline] = ACTIONS(265), - [anon_sym___inline] = ACTIONS(265), - [anon_sym___inline__] = ACTIONS(265), - [anon_sym___forceinline] = ACTIONS(265), - [anon_sym_thread_local] = ACTIONS(265), - [anon_sym___thread] = ACTIONS(265), - [anon_sym_const] = ACTIONS(268), - [anon_sym_constexpr] = ACTIONS(268), - [anon_sym_volatile] = ACTIONS(268), - [anon_sym_restrict] = ACTIONS(268), - [anon_sym___restrict__] = ACTIONS(268), - [anon_sym__Atomic] = ACTIONS(268), - [anon_sym__Noreturn] = ACTIONS(268), - [anon_sym_noreturn] = ACTIONS(268), - [anon_sym__Nonnull] = ACTIONS(268), - [anon_sym_alignas] = ACTIONS(271), - [anon_sym__Alignas] = ACTIONS(271), - [sym_primitive_type] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(277), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_union] = ACTIONS(283), - [anon_sym_if] = ACTIONS(443), - [anon_sym_switch] = ACTIONS(446), - [anon_sym_case] = ACTIONS(449), - [anon_sym_default] = ACTIONS(452), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(458), - [anon_sym_for] = ACTIONS(461), - [anon_sym_return] = ACTIONS(464), - [anon_sym_break] = ACTIONS(467), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_goto] = ACTIONS(473), - [anon_sym___try] = ACTIONS(476), - [anon_sym___leave] = ACTIONS(479), - [anon_sym_DASH_DASH] = ACTIONS(325), - [anon_sym_PLUS_PLUS] = ACTIONS(325), - [anon_sym_sizeof] = ACTIONS(328), - [anon_sym___alignof__] = ACTIONS(331), - [anon_sym___alignof] = ACTIONS(331), - [anon_sym__alignof] = ACTIONS(331), - [anon_sym_alignof] = ACTIONS(331), - [anon_sym__Alignof] = ACTIONS(331), - [anon_sym_offsetof] = ACTIONS(334), - [anon_sym__Generic] = ACTIONS(337), - [anon_sym_asm] = ACTIONS(340), - [anon_sym___asm__] = ACTIONS(340), - [anon_sym___asm] = ACTIONS(340), - [sym_number_literal] = ACTIONS(343), - [anon_sym_L_SQUOTE] = ACTIONS(346), - [anon_sym_u_SQUOTE] = ACTIONS(346), - [anon_sym_U_SQUOTE] = ACTIONS(346), - [anon_sym_u8_SQUOTE] = ACTIONS(346), - [anon_sym_SQUOTE] = ACTIONS(346), - [anon_sym_L_DQUOTE] = ACTIONS(349), - [anon_sym_u_DQUOTE] = ACTIONS(349), - [anon_sym_U_DQUOTE] = ACTIONS(349), - [anon_sym_u8_DQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [sym_true] = ACTIONS(352), - [sym_false] = ACTIONS(352), - [anon_sym_NULL] = ACTIONS(355), - [anon_sym_nullptr] = ACTIONS(355), + [STATE(24)] = { + [sym__block_item] = STATE(29), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym__old_style_function_definition] = STATE(353), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1416), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(920), + [sym_compound_statement] = STATE(221), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1013), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(355), + [sym_statement] = STATE(29), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(418), + [aux_sym_preproc_include_token1] = ACTIONS(420), + [aux_sym_preproc_def_token1] = ACTIONS(422), + [aux_sym_preproc_if_token1] = ACTIONS(424), + [aux_sym_preproc_if_token2] = ACTIONS(426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(428), + [sym_preproc_directive] = ACTIONS(430), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(438), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(448), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [25] = { - [sym__block_item] = STATE(27), - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(27), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(25)] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -16252,7 +17298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -16263,161 +17309,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [26] = { - [sym__block_item] = STATE(40), - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(286), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(697), - [sym_compound_statement] = STATE(180), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(798), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(287), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_if_token2] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(26)] = { + [sym__block_item] = STATE(28), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(28), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -16428,7 +17474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -16439,161 +17485,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [27] = { - [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_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(27)] = { + [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_function_definition] = STATE(32), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(32), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(534), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -16604,7 +17650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -16615,161 +17661,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [28] = { - [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_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(28)] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -16780,7 +17826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -16791,161 +17837,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [29] = { - [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_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(29)] = { + [sym__block_item] = STATE(29), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym__old_style_function_definition] = STATE(353), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1416), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(920), + [sym_compound_statement] = STATE(221), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1013), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(355), + [sym_statement] = STATE(29), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(476), + [aux_sym_preproc_include_token1] = ACTIONS(479), + [aux_sym_preproc_def_token1] = ACTIONS(482), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_if_token2] = ACTIONS(225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(488), + [sym_preproc_directive] = ACTIONS(491), + [anon_sym_LPAREN2] = ACTIONS(233), + [anon_sym_BANG] = ACTIONS(236), + [anon_sym_TILDE] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(242), + [anon_sym_AMP] = ACTIONS(242), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym___extension__] = ACTIONS(497), + [anon_sym_typedef] = ACTIONS(500), + [anon_sym_extern] = ACTIONS(503), + [anon_sym___attribute__] = ACTIONS(257), + [anon_sym___attribute] = ACTIONS(257), + [anon_sym_const] = ACTIONS(260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(263), + [anon_sym___declspec] = ACTIONS(266), + [anon_sym___cdecl] = ACTIONS(269), + [anon_sym___clrcall] = ACTIONS(269), + [anon_sym___stdcall] = ACTIONS(269), + [anon_sym___fastcall] = ACTIONS(269), + [anon_sym___thiscall] = ACTIONS(269), + [anon_sym___vectorcall] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_signed] = ACTIONS(275), + [anon_sym_unsigned] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_static] = ACTIONS(278), + [anon_sym_auto] = ACTIONS(278), + [anon_sym_register] = ACTIONS(278), + [anon_sym_inline] = ACTIONS(278), + [anon_sym___inline] = ACTIONS(278), + [anon_sym___inline__] = ACTIONS(278), + [anon_sym___forceinline] = ACTIONS(278), + [anon_sym_thread_local] = ACTIONS(278), + [anon_sym___thread] = ACTIONS(278), + [anon_sym_constexpr] = ACTIONS(260), + [anon_sym_volatile] = ACTIONS(260), + [anon_sym_restrict] = ACTIONS(260), + [anon_sym___restrict__] = ACTIONS(260), + [anon_sym__Atomic] = ACTIONS(260), + [anon_sym__Noreturn] = ACTIONS(260), + [anon_sym_noreturn] = ACTIONS(260), + [anon_sym__Nonnull] = ACTIONS(260), + [anon_sym_alignas] = ACTIONS(281), + [anon_sym__Alignas] = ACTIONS(281), + [sym_primitive_type] = ACTIONS(284), + [anon_sym_enum] = ACTIONS(287), + [anon_sym_struct] = ACTIONS(290), + [anon_sym_union] = ACTIONS(293), + [anon_sym_if] = ACTIONS(509), + [anon_sym_switch] = ACTIONS(512), + [anon_sym_case] = ACTIONS(515), + [anon_sym_default] = ACTIONS(518), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(524), + [anon_sym_for] = ACTIONS(527), + [anon_sym_return] = ACTIONS(530), + [anon_sym_break] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_goto] = ACTIONS(539), + [anon_sym___try] = ACTIONS(542), + [anon_sym___leave] = ACTIONS(545), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(338), + [anon_sym___alignof__] = ACTIONS(341), + [anon_sym___alignof] = ACTIONS(341), + [anon_sym__alignof] = ACTIONS(341), + [anon_sym_alignof] = ACTIONS(341), + [anon_sym__Alignof] = ACTIONS(341), + [anon_sym_offsetof] = ACTIONS(344), + [anon_sym__Generic] = ACTIONS(347), + [anon_sym_asm] = ACTIONS(350), + [anon_sym___asm__] = ACTIONS(350), + [anon_sym___asm] = ACTIONS(350), + [sym_number_literal] = ACTIONS(353), + [anon_sym_L_SQUOTE] = ACTIONS(356), + [anon_sym_u_SQUOTE] = ACTIONS(356), + [anon_sym_U_SQUOTE] = ACTIONS(356), + [anon_sym_u8_SQUOTE] = ACTIONS(356), + [anon_sym_SQUOTE] = ACTIONS(356), + [anon_sym_L_DQUOTE] = ACTIONS(359), + [anon_sym_u_DQUOTE] = ACTIONS(359), + [anon_sym_U_DQUOTE] = ACTIONS(359), + [anon_sym_u8_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_true] = ACTIONS(362), + [sym_false] = ACTIONS(362), + [anon_sym_NULL] = ACTIONS(365), + [anon_sym_nullptr] = ACTIONS(365), + [sym_comment] = ACTIONS(3), + }, + [STATE(30)] = { + [sym__block_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__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(35), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -16956,7 +18178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -16967,161 +18189,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [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_function_definition] = STATE(32), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(32), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [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_function_definition] = STATE(33), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -17132,7 +18354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -17143,161 +18365,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [31] = { - [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_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(32)] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -17308,7 +18530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -17319,161 +18541,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [32] = { - [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_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(33)] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -17484,7 +18706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -17495,161 +18717,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym__block_item] = STATE(28), - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_function_definition] = STATE(28), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(28), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(34)] = { + [sym__block_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_function_definition] = STATE(36), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(36), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -17660,7 +18882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -17671,161 +18893,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym__block_item] = STATE(29), - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(29), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(35)] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -17836,7 +19058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -17847,161 +19069,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [35] = { - [sym__block_item] = STATE(26), - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(286), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(697), - [sym_compound_statement] = STATE(180), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(798), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(287), - [sym_statement] = STATE(26), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_if_token2] = ACTIONS(550), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(36)] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -18012,7 +19234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -18023,161 +19245,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym__block_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_function_definition] = STATE(38), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(38), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [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__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(562), + [aux_sym_preproc_include_token1] = ACTIONS(565), + [aux_sym_preproc_def_token1] = ACTIONS(568), + [aux_sym_preproc_if_token1] = ACTIONS(571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(574), + [aux_sym_preproc_ifdef_token2] = ACTIONS(574), + [sym_preproc_directive] = ACTIONS(577), + [anon_sym_LPAREN2] = ACTIONS(233), + [anon_sym_BANG] = ACTIONS(236), + [anon_sym_TILDE] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(242), + [anon_sym_AMP] = ACTIONS(242), + [anon_sym_SEMI] = ACTIONS(580), + [anon_sym___extension__] = ACTIONS(583), + [anon_sym_typedef] = ACTIONS(586), + [anon_sym_extern] = ACTIONS(589), + [anon_sym___attribute__] = ACTIONS(257), + [anon_sym___attribute] = ACTIONS(257), + [anon_sym_const] = ACTIONS(260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(263), + [anon_sym___declspec] = ACTIONS(266), + [anon_sym___cdecl] = ACTIONS(269), + [anon_sym___clrcall] = ACTIONS(269), + [anon_sym___stdcall] = ACTIONS(269), + [anon_sym___fastcall] = ACTIONS(269), + [anon_sym___thiscall] = ACTIONS(269), + [anon_sym___vectorcall] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_signed] = ACTIONS(275), + [anon_sym_unsigned] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_static] = ACTIONS(278), + [anon_sym_auto] = ACTIONS(278), + [anon_sym_register] = ACTIONS(278), + [anon_sym_inline] = ACTIONS(278), + [anon_sym___inline] = ACTIONS(278), + [anon_sym___inline__] = ACTIONS(278), + [anon_sym___forceinline] = ACTIONS(278), + [anon_sym_thread_local] = ACTIONS(278), + [anon_sym___thread] = ACTIONS(278), + [anon_sym_constexpr] = ACTIONS(260), + [anon_sym_volatile] = ACTIONS(260), + [anon_sym_restrict] = ACTIONS(260), + [anon_sym___restrict__] = ACTIONS(260), + [anon_sym__Atomic] = ACTIONS(260), + [anon_sym__Noreturn] = ACTIONS(260), + [anon_sym_noreturn] = ACTIONS(260), + [anon_sym__Nonnull] = ACTIONS(260), + [anon_sym_alignas] = ACTIONS(281), + [anon_sym__Alignas] = ACTIONS(281), + [sym_primitive_type] = ACTIONS(284), + [anon_sym_enum] = ACTIONS(287), + [anon_sym_struct] = ACTIONS(290), + [anon_sym_union] = ACTIONS(293), + [anon_sym_if] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(600), + [anon_sym_case] = ACTIONS(603), + [anon_sym_default] = ACTIONS(606), + [anon_sym_while] = ACTIONS(609), + [anon_sym_do] = ACTIONS(612), + [anon_sym_for] = ACTIONS(615), + [anon_sym_return] = ACTIONS(618), + [anon_sym_break] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(624), + [anon_sym_goto] = ACTIONS(627), + [anon_sym___try] = ACTIONS(630), + [anon_sym___leave] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(338), + [anon_sym___alignof__] = ACTIONS(341), + [anon_sym___alignof] = ACTIONS(341), + [anon_sym__alignof] = ACTIONS(341), + [anon_sym_alignof] = ACTIONS(341), + [anon_sym__Alignof] = ACTIONS(341), + [anon_sym_offsetof] = ACTIONS(344), + [anon_sym__Generic] = ACTIONS(347), + [anon_sym_asm] = ACTIONS(350), + [anon_sym___asm__] = ACTIONS(350), + [anon_sym___asm] = ACTIONS(350), + [sym_number_literal] = ACTIONS(353), + [anon_sym_L_SQUOTE] = ACTIONS(356), + [anon_sym_u_SQUOTE] = ACTIONS(356), + [anon_sym_U_SQUOTE] = ACTIONS(356), + [anon_sym_u8_SQUOTE] = ACTIONS(356), + [anon_sym_SQUOTE] = ACTIONS(356), + [anon_sym_L_DQUOTE] = ACTIONS(359), + [anon_sym_u_DQUOTE] = ACTIONS(359), + [anon_sym_U_DQUOTE] = ACTIONS(359), + [anon_sym_u8_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_true] = ACTIONS(362), + [sym_false] = ACTIONS(362), + [anon_sym_NULL] = ACTIONS(365), + [anon_sym_nullptr] = ACTIONS(365), + [sym_comment] = ACTIONS(3), + }, + [STATE(38)] = { + [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_preproc_if] = STATE(24), + [sym_preproc_ifdef] = STATE(24), + [sym_function_definition] = STATE(24), + [sym__old_style_function_definition] = STATE(353), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1416), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(920), + [sym_compound_statement] = STATE(221), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1013), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(355), + [sym_statement] = STATE(24), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(418), + [aux_sym_preproc_include_token1] = ACTIONS(420), + [aux_sym_preproc_def_token1] = ACTIONS(422), + [aux_sym_preproc_if_token1] = ACTIONS(424), + [aux_sym_preproc_if_token2] = ACTIONS(636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(428), + [sym_preproc_directive] = ACTIONS(430), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(438), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(448), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -18188,7 +19586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -18199,13 +19597,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [37] = { + [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__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(638), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(40)] = { [sym__block_item] = STATE(42), [sym_preproc_include] = STATE(42), [sym_preproc_def] = STATE(42), @@ -18214,146 +19788,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(42), [sym_preproc_ifdef] = STATE(42), [sym_function_definition] = STATE(42), - [sym__old_style_function_definition] = STATE(271), + [sym__old_style_function_definition] = STATE(360), [sym_declaration] = STATE(42), [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(772), + [sym_macro_type_specifier] = STATE(999), [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -18364,7 +19938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -18375,161 +19949,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [38] = { - [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_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(41)] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -18540,7 +20114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -18551,161 +20125,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [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__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(42)] = { + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1428), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(916), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1037), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(307), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_include_token1] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(372), + [aux_sym_preproc_if_token1] = ACTIONS(374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(386), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -18716,7 +20290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -18727,270 +20301,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym__block_item] = STATE(40), - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(286), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(697), - [sym_compound_statement] = STATE(180), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(798), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(287), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(560), - [aux_sym_preproc_include_token1] = ACTIONS(563), - [aux_sym_preproc_def_token1] = ACTIONS(566), - [aux_sym_preproc_if_token1] = ACTIONS(569), - [aux_sym_preproc_if_token2] = ACTIONS(215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(572), - [aux_sym_preproc_ifdef_token2] = ACTIONS(572), - [sym_preproc_directive] = ACTIONS(575), - [anon_sym_LPAREN2] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(232), - [anon_sym_AMP] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym___extension__] = ACTIONS(581), - [anon_sym_typedef] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(587), - [anon_sym___attribute__] = ACTIONS(247), - [anon_sym___attribute] = ACTIONS(247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(250), - [anon_sym___declspec] = ACTIONS(253), - [anon_sym___cdecl] = ACTIONS(256), - [anon_sym___clrcall] = ACTIONS(256), - [anon_sym___stdcall] = ACTIONS(256), - [anon_sym___fastcall] = ACTIONS(256), - [anon_sym___thiscall] = ACTIONS(256), - [anon_sym___vectorcall] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_signed] = ACTIONS(262), - [anon_sym_unsigned] = ACTIONS(262), - [anon_sym_long] = ACTIONS(262), - [anon_sym_short] = ACTIONS(262), - [anon_sym_static] = ACTIONS(265), - [anon_sym_auto] = ACTIONS(265), - [anon_sym_register] = ACTIONS(265), - [anon_sym_inline] = ACTIONS(265), - [anon_sym___inline] = ACTIONS(265), - [anon_sym___inline__] = ACTIONS(265), - [anon_sym___forceinline] = ACTIONS(265), - [anon_sym_thread_local] = ACTIONS(265), - [anon_sym___thread] = ACTIONS(265), - [anon_sym_const] = ACTIONS(268), - [anon_sym_constexpr] = ACTIONS(268), - [anon_sym_volatile] = ACTIONS(268), - [anon_sym_restrict] = ACTIONS(268), - [anon_sym___restrict__] = ACTIONS(268), - [anon_sym__Atomic] = ACTIONS(268), - [anon_sym__Noreturn] = ACTIONS(268), - [anon_sym_noreturn] = ACTIONS(268), - [anon_sym__Nonnull] = ACTIONS(268), - [anon_sym_alignas] = ACTIONS(271), - [anon_sym__Alignas] = ACTIONS(271), - [sym_primitive_type] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(277), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_union] = ACTIONS(283), - [anon_sym_if] = ACTIONS(593), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(599), - [anon_sym_default] = ACTIONS(602), - [anon_sym_while] = ACTIONS(605), - [anon_sym_do] = ACTIONS(608), - [anon_sym_for] = ACTIONS(611), - [anon_sym_return] = ACTIONS(614), - [anon_sym_break] = ACTIONS(617), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(623), - [anon_sym___try] = ACTIONS(626), - [anon_sym___leave] = ACTIONS(629), - [anon_sym_DASH_DASH] = ACTIONS(325), - [anon_sym_PLUS_PLUS] = ACTIONS(325), - [anon_sym_sizeof] = ACTIONS(328), - [anon_sym___alignof__] = ACTIONS(331), - [anon_sym___alignof] = ACTIONS(331), - [anon_sym__alignof] = ACTIONS(331), - [anon_sym_alignof] = ACTIONS(331), - [anon_sym__Alignof] = ACTIONS(331), - [anon_sym_offsetof] = ACTIONS(334), - [anon_sym__Generic] = ACTIONS(337), - [anon_sym_asm] = ACTIONS(340), - [anon_sym___asm__] = ACTIONS(340), - [anon_sym___asm] = ACTIONS(340), - [sym_number_literal] = ACTIONS(343), - [anon_sym_L_SQUOTE] = ACTIONS(346), - [anon_sym_u_SQUOTE] = ACTIONS(346), - [anon_sym_U_SQUOTE] = ACTIONS(346), - [anon_sym_u8_SQUOTE] = ACTIONS(346), - [anon_sym_SQUOTE] = ACTIONS(346), - [anon_sym_L_DQUOTE] = ACTIONS(349), - [anon_sym_u_DQUOTE] = ACTIONS(349), - [anon_sym_U_DQUOTE] = ACTIONS(349), - [anon_sym_u8_DQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [sym_true] = ACTIONS(352), - [sym_false] = ACTIONS(352), - [anon_sym_NULL] = ACTIONS(355), - [anon_sym_nullptr] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - }, - [41] = { - [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_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), + [STATE(43)] = { + [sym__top_level_item] = STATE(44), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym__old_style_function_definition] = STATE(373), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1424), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(899), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1009), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(375), + [sym__top_level_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym__top_level_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_expression] = STATE(1394), + [sym__string] = STATE(596), + [sym_conditional_expression] = STATE(596), + [sym_assignment_expression] = STATE(596), + [sym_pointer_expression] = STATE(1170), + [sym_unary_expression] = STATE(596), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(596), + [sym_cast_expression] = STATE(596), + [sym_sizeof_expression] = STATE(596), + [sym_alignof_expression] = STATE(596), + [sym_offsetof_expression] = STATE(596), + [sym_generic_expression] = STATE(596), + [sym_subscript_expression] = STATE(1170), + [sym_call_expression] = STATE(1170), + [sym_gnu_asm_expression] = STATE(596), + [sym_extension_expression] = STATE(596), + [sym_field_expression] = STATE(1170), + [sym_compound_literal_expression] = STATE(596), + [sym_parenthesized_expression] = STATE(1170), + [sym_char_literal] = STATE(596), + [sym_concatenated_string] = STATE(596), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(596), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(386), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [ts_builtin_sym_end] = ACTIONS(646), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18998,63 +20394,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(43), + [anon_sym___clrcall] = ACTIONS(43), + [anon_sym___stdcall] = ACTIONS(43), + [anon_sym___fastcall] = ACTIONS(43), + [anon_sym___thiscall] = ACTIONS(43), + [anon_sym___vectorcall] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), [anon_sym_DASH_DASH] = ACTIONS(83), [anon_sym_PLUS_PLUS] = ACTIONS(83), [anon_sym_sizeof] = ACTIONS(85), @@ -19068,7 +20461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(95), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -19079,161 +20472,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(101), + [sym_false] = ACTIONS(101), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [42] = { - [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_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(271), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1138), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(694), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(812), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(272), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(358), - [aux_sym_preproc_include_token1] = ACTIONS(360), - [aux_sym_preproc_def_token1] = ACTIONS(362), - [aux_sym_preproc_if_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(366), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(44)] = { + [sym__top_level_item] = STATE(44), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym__old_style_function_definition] = STATE(373), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1424), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_ms_call_modifier] = STATE(899), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1009), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(375), + [sym__top_level_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym__top_level_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_expression] = STATE(1394), + [sym__string] = STATE(596), + [sym_conditional_expression] = STATE(596), + [sym_assignment_expression] = STATE(596), + [sym_pointer_expression] = STATE(1170), + [sym_unary_expression] = STATE(596), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(596), + [sym_cast_expression] = STATE(596), + [sym_sizeof_expression] = STATE(596), + [sym_alignof_expression] = STATE(596), + [sym_offsetof_expression] = STATE(596), + [sym_generic_expression] = STATE(596), + [sym_subscript_expression] = STATE(1170), + [sym_call_expression] = STATE(1170), + [sym_gnu_asm_expression] = STATE(596), + [sym_extension_expression] = STATE(596), + [sym_field_expression] = STATE(1170), + [sym_compound_literal_expression] = STATE(596), + [sym_parenthesized_expression] = STATE(1170), + [sym_char_literal] = STATE(596), + [sym_concatenated_string] = STATE(596), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(596), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(386), + [aux_sym_sized_type_specifier_repeat1] = STATE(971), + [ts_builtin_sym_end] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), + [aux_sym_preproc_include_token1] = ACTIONS(653), + [aux_sym_preproc_def_token1] = ACTIONS(656), + [aux_sym_preproc_if_token1] = ACTIONS(659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(662), + [sym_preproc_directive] = ACTIONS(665), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(677), + [anon_sym_AMP] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym___extension__] = ACTIONS(683), + [anon_sym_typedef] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(689), + [anon_sym___attribute__] = ACTIONS(692), + [anon_sym___attribute] = ACTIONS(692), + [anon_sym_const] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(698), + [anon_sym___declspec] = ACTIONS(701), + [anon_sym___cdecl] = ACTIONS(704), + [anon_sym___clrcall] = ACTIONS(704), + [anon_sym___stdcall] = ACTIONS(704), + [anon_sym___fastcall] = ACTIONS(704), + [anon_sym___thiscall] = ACTIONS(704), + [anon_sym___vectorcall] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_signed] = ACTIONS(710), + [anon_sym_unsigned] = ACTIONS(710), + [anon_sym_long] = ACTIONS(710), + [anon_sym_short] = ACTIONS(710), + [anon_sym_static] = ACTIONS(713), + [anon_sym_auto] = ACTIONS(713), + [anon_sym_register] = ACTIONS(713), + [anon_sym_inline] = ACTIONS(713), + [anon_sym___inline] = ACTIONS(713), + [anon_sym___inline__] = ACTIONS(713), + [anon_sym___forceinline] = ACTIONS(713), + [anon_sym_thread_local] = ACTIONS(713), + [anon_sym___thread] = ACTIONS(713), + [anon_sym_constexpr] = ACTIONS(695), + [anon_sym_volatile] = ACTIONS(695), + [anon_sym_restrict] = ACTIONS(695), + [anon_sym___restrict__] = ACTIONS(695), + [anon_sym__Atomic] = ACTIONS(695), + [anon_sym__Noreturn] = ACTIONS(695), + [anon_sym_noreturn] = ACTIONS(695), + [anon_sym__Nonnull] = ACTIONS(695), + [anon_sym_alignas] = ACTIONS(716), + [anon_sym__Alignas] = ACTIONS(716), + [sym_primitive_type] = ACTIONS(719), + [anon_sym_enum] = ACTIONS(722), + [anon_sym_struct] = ACTIONS(725), + [anon_sym_union] = ACTIONS(728), + [anon_sym_if] = ACTIONS(731), + [anon_sym_switch] = ACTIONS(734), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(740), + [anon_sym_while] = ACTIONS(743), + [anon_sym_do] = ACTIONS(746), + [anon_sym_for] = ACTIONS(749), + [anon_sym_return] = ACTIONS(752), + [anon_sym_break] = ACTIONS(755), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_goto] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_sizeof] = ACTIONS(767), + [anon_sym___alignof__] = ACTIONS(770), + [anon_sym___alignof] = ACTIONS(770), + [anon_sym__alignof] = ACTIONS(770), + [anon_sym_alignof] = ACTIONS(770), + [anon_sym__Alignof] = ACTIONS(770), + [anon_sym_offsetof] = ACTIONS(773), + [anon_sym__Generic] = ACTIONS(776), + [anon_sym_asm] = ACTIONS(779), + [anon_sym___asm__] = ACTIONS(779), + [anon_sym___asm] = ACTIONS(779), + [sym_number_literal] = ACTIONS(782), + [anon_sym_L_SQUOTE] = ACTIONS(785), + [anon_sym_u_SQUOTE] = ACTIONS(785), + [anon_sym_U_SQUOTE] = ACTIONS(785), + [anon_sym_u8_SQUOTE] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(785), + [anon_sym_L_DQUOTE] = ACTIONS(788), + [anon_sym_u_DQUOTE] = ACTIONS(788), + [anon_sym_U_DQUOTE] = ACTIONS(788), + [anon_sym_u8_DQUOTE] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym_true] = ACTIONS(791), + [sym_false] = ACTIONS(791), + [anon_sym_NULL] = ACTIONS(794), + [anon_sym_nullptr] = ACTIONS(794), + [sym_comment] = ACTIONS(3), + }, + [STATE(45)] = { + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_seh_try_statement] = STATE(47), + [sym_seh_leave_statement] = STATE(47), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(797), + [aux_sym_preproc_include_token1] = ACTIONS(799), + [aux_sym_preproc_def_token1] = ACTIONS(799), + [aux_sym_preproc_if_token1] = ACTIONS(799), + [aux_sym_preproc_if_token2] = ACTIONS(799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(799), + [aux_sym_preproc_else_token1] = ACTIONS(799), + [aux_sym_preproc_elif_token1] = ACTIONS(799), + [aux_sym_preproc_elifdef_token1] = ACTIONS(799), + [aux_sym_preproc_elifdef_token2] = ACTIONS(799), + [sym_preproc_directive] = ACTIONS(799), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(799), + [anon_sym___clrcall] = ACTIONS(799), + [anon_sym___stdcall] = ACTIONS(799), + [anon_sym___fastcall] = ACTIONS(799), + [anon_sym___thiscall] = ACTIONS(799), + [anon_sym___vectorcall] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(805), + [anon_sym_else] = ACTIONS(799), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(799), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -19244,7 +20799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -19255,327 +20810,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [43] = { - [sym__top_level_item] = STATE(43), - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(338), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1136), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(691), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(800), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(362), - [sym__top_level_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym__top_level_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym_expression] = STATE(1116), - [sym__string] = STATE(1119), - [sym_conditional_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1119), - [sym_pointer_expression] = STATE(935), - [sym_unary_expression] = STATE(1119), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(1119), - [sym_cast_expression] = STATE(1119), - [sym_sizeof_expression] = STATE(1119), - [sym_alignof_expression] = STATE(1119), - [sym_offsetof_expression] = STATE(1119), - [sym_generic_expression] = STATE(1119), - [sym_subscript_expression] = STATE(935), - [sym_call_expression] = STATE(935), - [sym_gnu_asm_expression] = STATE(1119), - [sym_extension_expression] = STATE(1119), - [sym_field_expression] = STATE(935), - [sym_compound_literal_expression] = STATE(1119), - [sym_parenthesized_expression] = STATE(935), - [sym_char_literal] = STATE(1119), - [sym_concatenated_string] = STATE(1119), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(1119), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(636), - [sym_identifier] = ACTIONS(638), - [aux_sym_preproc_include_token1] = ACTIONS(641), - [aux_sym_preproc_def_token1] = ACTIONS(644), - [aux_sym_preproc_if_token1] = ACTIONS(647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(650), - [sym_preproc_directive] = ACTIONS(653), - [anon_sym_LPAREN2] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_SEMI] = ACTIONS(668), - [anon_sym___extension__] = ACTIONS(671), - [anon_sym_typedef] = ACTIONS(674), - [anon_sym_extern] = ACTIONS(677), - [anon_sym___attribute__] = ACTIONS(680), - [anon_sym___attribute] = ACTIONS(680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(683), - [anon_sym___declspec] = ACTIONS(686), - [anon_sym___cdecl] = ACTIONS(689), - [anon_sym___clrcall] = ACTIONS(689), - [anon_sym___stdcall] = ACTIONS(689), - [anon_sym___fastcall] = ACTIONS(689), - [anon_sym___thiscall] = ACTIONS(689), - [anon_sym___vectorcall] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_signed] = ACTIONS(695), - [anon_sym_unsigned] = ACTIONS(695), - [anon_sym_long] = ACTIONS(695), - [anon_sym_short] = ACTIONS(695), - [anon_sym_static] = ACTIONS(698), - [anon_sym_auto] = ACTIONS(698), - [anon_sym_register] = ACTIONS(698), - [anon_sym_inline] = ACTIONS(698), - [anon_sym___inline] = ACTIONS(698), - [anon_sym___inline__] = ACTIONS(698), - [anon_sym___forceinline] = ACTIONS(698), - [anon_sym_thread_local] = ACTIONS(698), - [anon_sym___thread] = ACTIONS(698), - [anon_sym_const] = ACTIONS(701), - [anon_sym_constexpr] = ACTIONS(701), - [anon_sym_volatile] = ACTIONS(701), - [anon_sym_restrict] = ACTIONS(701), - [anon_sym___restrict__] = ACTIONS(701), - [anon_sym__Atomic] = ACTIONS(701), - [anon_sym__Noreturn] = ACTIONS(701), - [anon_sym_noreturn] = ACTIONS(701), - [anon_sym__Nonnull] = ACTIONS(701), - [anon_sym_alignas] = ACTIONS(704), - [anon_sym__Alignas] = ACTIONS(704), - [sym_primitive_type] = ACTIONS(707), - [anon_sym_enum] = ACTIONS(710), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_union] = ACTIONS(716), - [anon_sym_if] = ACTIONS(719), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(728), - [anon_sym_while] = ACTIONS(731), - [anon_sym_do] = ACTIONS(734), - [anon_sym_for] = ACTIONS(737), - [anon_sym_return] = ACTIONS(740), - [anon_sym_break] = ACTIONS(743), - [anon_sym_continue] = ACTIONS(746), - [anon_sym_goto] = ACTIONS(749), - [anon_sym_DASH_DASH] = ACTIONS(752), - [anon_sym_PLUS_PLUS] = ACTIONS(752), - [anon_sym_sizeof] = ACTIONS(755), - [anon_sym___alignof__] = ACTIONS(758), - [anon_sym___alignof] = ACTIONS(758), - [anon_sym__alignof] = ACTIONS(758), - [anon_sym_alignof] = ACTIONS(758), - [anon_sym__Alignof] = ACTIONS(758), - [anon_sym_offsetof] = ACTIONS(761), - [anon_sym__Generic] = ACTIONS(764), - [anon_sym_asm] = ACTIONS(767), - [anon_sym___asm__] = ACTIONS(767), - [anon_sym___asm] = ACTIONS(767), - [sym_number_literal] = ACTIONS(770), - [anon_sym_L_SQUOTE] = ACTIONS(773), - [anon_sym_u_SQUOTE] = ACTIONS(773), - [anon_sym_U_SQUOTE] = ACTIONS(773), - [anon_sym_u8_SQUOTE] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(773), - [anon_sym_L_DQUOTE] = ACTIONS(776), - [anon_sym_u_DQUOTE] = ACTIONS(776), - [anon_sym_U_DQUOTE] = ACTIONS(776), - [anon_sym_u8_DQUOTE] = ACTIONS(776), - [anon_sym_DQUOTE] = ACTIONS(776), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [anon_sym_NULL] = ACTIONS(782), - [anon_sym_nullptr] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - }, - [44] = { - [sym__top_level_item] = STATE(43), - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(338), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1136), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(691), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(800), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(362), - [sym__top_level_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym__top_level_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym_expression] = STATE(1116), - [sym__string] = STATE(1119), - [sym_conditional_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1119), - [sym_pointer_expression] = STATE(935), - [sym_unary_expression] = STATE(1119), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(1119), - [sym_cast_expression] = STATE(1119), - [sym_sizeof_expression] = STATE(1119), - [sym_alignof_expression] = STATE(1119), - [sym_offsetof_expression] = STATE(1119), - [sym_generic_expression] = STATE(1119), - [sym_subscript_expression] = STATE(935), - [sym_call_expression] = STATE(935), - [sym_gnu_asm_expression] = STATE(1119), - [sym_extension_expression] = STATE(1119), - [sym_field_expression] = STATE(935), - [sym_compound_literal_expression] = STATE(1119), - [sym_parenthesized_expression] = STATE(935), - [sym_char_literal] = STATE(1119), - [sym_concatenated_string] = STATE(1119), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(1119), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(46)] = { + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(797), + [aux_sym_preproc_include_token1] = ACTIONS(811), + [aux_sym_preproc_def_token1] = ACTIONS(811), + [aux_sym_preproc_if_token1] = ACTIONS(811), + [aux_sym_preproc_if_token2] = ACTIONS(811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(811), + [aux_sym_preproc_else_token1] = ACTIONS(811), + [aux_sym_preproc_elif_token1] = ACTIONS(811), + [aux_sym_preproc_elifdef_token1] = ACTIONS(811), + [aux_sym_preproc_elifdef_token2] = ACTIONS(811), + [sym_preproc_directive] = ACTIONS(811), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(811), + [anon_sym___clrcall] = ACTIONS(811), + [anon_sym___stdcall] = ACTIONS(811), + [anon_sym___fastcall] = ACTIONS(811), + [anon_sym___thiscall] = ACTIONS(811), + [anon_sym___vectorcall] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(65), - [anon_sym_default] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(805), + [anon_sym_else] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(811), + [anon_sym_default] = ACTIONS(811), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -19586,7 +20966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(95), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -19597,152 +20977,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(101), - [sym_false] = ACTIONS(101), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [45] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(787), - [aux_sym_preproc_include_token1] = ACTIONS(789), - [aux_sym_preproc_def_token1] = ACTIONS(789), - [aux_sym_preproc_if_token1] = ACTIONS(789), - [aux_sym_preproc_if_token2] = ACTIONS(789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(789), - [aux_sym_preproc_else_token1] = ACTIONS(789), - [aux_sym_preproc_elif_token1] = ACTIONS(789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(789), - [aux_sym_preproc_elifdef_token2] = ACTIONS(789), - [sym_preproc_directive] = ACTIONS(789), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(47)] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_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_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(797), + [aux_sym_preproc_include_token1] = ACTIONS(813), + [aux_sym_preproc_def_token1] = ACTIONS(813), + [aux_sym_preproc_if_token1] = ACTIONS(813), + [aux_sym_preproc_if_token2] = ACTIONS(813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(813), + [aux_sym_preproc_else_token1] = ACTIONS(813), + [aux_sym_preproc_elif_token1] = ACTIONS(813), + [aux_sym_preproc_elifdef_token1] = ACTIONS(813), + [aux_sym_preproc_elifdef_token2] = ACTIONS(813), + [sym_preproc_directive] = ACTIONS(813), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(789), - [anon_sym___clrcall] = ACTIONS(789), - [anon_sym___stdcall] = ACTIONS(789), - [anon_sym___fastcall] = ACTIONS(789), - [anon_sym___thiscall] = ACTIONS(789), - [anon_sym___vectorcall] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(813), + [anon_sym___clrcall] = ACTIONS(813), + [anon_sym___stdcall] = ACTIONS(813), + [anon_sym___fastcall] = ACTIONS(813), + [anon_sym___thiscall] = ACTIONS(813), + [anon_sym___vectorcall] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_else] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(805), + [anon_sym_else] = ACTIONS(813), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(813), + [anon_sym_default] = ACTIONS(813), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -19753,7 +21133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -19764,29 +21144,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [46] = { + [STATE(48)] = { [sym_declaration] = STATE(48), [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), [sym_attributed_statement] = STATE(48), [sym_labeled_statement] = STATE(48), [sym_expression_statement] = STATE(48), @@ -19801,282 +21181,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(48), [sym_seh_try_statement] = STATE(48), [sym_seh_leave_statement] = STATE(48), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(787), - [aux_sym_preproc_include_token1] = ACTIONS(791), - [aux_sym_preproc_def_token1] = ACTIONS(791), - [aux_sym_preproc_if_token1] = ACTIONS(791), - [aux_sym_preproc_if_token2] = ACTIONS(791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(791), - [aux_sym_preproc_else_token1] = ACTIONS(791), - [aux_sym_preproc_elif_token1] = ACTIONS(791), - [aux_sym_preproc_elifdef_token1] = ACTIONS(791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(791), - [sym_preproc_directive] = ACTIONS(791), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(791), - [anon_sym___clrcall] = ACTIONS(791), - [anon_sym___stdcall] = ACTIONS(791), - [anon_sym___fastcall] = ACTIONS(791), - [anon_sym___thiscall] = ACTIONS(791), - [anon_sym___vectorcall] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_else] = ACTIONS(791), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(791), - [anon_sym_default] = ACTIONS(791), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [sym_identifier] = ACTIONS(815), + [aux_sym_preproc_include_token1] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(818), + [aux_sym_preproc_if_token2] = ACTIONS(818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(818), + [aux_sym_preproc_else_token1] = ACTIONS(818), + [aux_sym_preproc_elif_token1] = ACTIONS(818), + [aux_sym_preproc_elifdef_token1] = ACTIONS(818), + [aux_sym_preproc_elifdef_token2] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym___extension__] = ACTIONS(835), + [anon_sym_typedef] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(841), + [anon_sym___attribute__] = ACTIONS(844), + [anon_sym___attribute] = ACTIONS(844), + [anon_sym_const] = ACTIONS(847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(850), + [anon_sym___declspec] = ACTIONS(853), + [anon_sym___cdecl] = ACTIONS(818), + [anon_sym___clrcall] = ACTIONS(818), + [anon_sym___stdcall] = ACTIONS(818), + [anon_sym___fastcall] = ACTIONS(818), + [anon_sym___thiscall] = ACTIONS(818), + [anon_sym___vectorcall] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_signed] = ACTIONS(859), + [anon_sym_unsigned] = ACTIONS(859), + [anon_sym_long] = ACTIONS(859), + [anon_sym_short] = ACTIONS(859), + [anon_sym_static] = ACTIONS(841), + [anon_sym_auto] = ACTIONS(841), + [anon_sym_register] = ACTIONS(841), + [anon_sym_inline] = ACTIONS(841), + [anon_sym___inline] = ACTIONS(841), + [anon_sym___inline__] = ACTIONS(841), + [anon_sym___forceinline] = ACTIONS(841), + [anon_sym_thread_local] = ACTIONS(841), + [anon_sym___thread] = ACTIONS(841), + [anon_sym_constexpr] = ACTIONS(847), + [anon_sym_volatile] = ACTIONS(847), + [anon_sym_restrict] = ACTIONS(847), + [anon_sym___restrict__] = ACTIONS(847), + [anon_sym__Atomic] = ACTIONS(847), + [anon_sym__Noreturn] = ACTIONS(847), + [anon_sym_noreturn] = ACTIONS(847), + [anon_sym__Nonnull] = ACTIONS(847), + [anon_sym_alignas] = ACTIONS(862), + [anon_sym__Alignas] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_union] = ACTIONS(874), + [anon_sym_if] = ACTIONS(877), + [anon_sym_else] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(880), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_while] = ACTIONS(883), + [anon_sym_do] = ACTIONS(886), + [anon_sym_for] = ACTIONS(889), + [anon_sym_return] = ACTIONS(892), + [anon_sym_break] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(901), + [anon_sym___try] = ACTIONS(904), + [anon_sym___leave] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(913), + [anon_sym___alignof__] = ACTIONS(916), + [anon_sym___alignof] = ACTIONS(916), + [anon_sym__alignof] = ACTIONS(916), + [anon_sym_alignof] = ACTIONS(916), + [anon_sym__Alignof] = ACTIONS(916), + [anon_sym_offsetof] = ACTIONS(919), + [anon_sym__Generic] = ACTIONS(922), + [anon_sym_asm] = ACTIONS(925), + [anon_sym___asm__] = ACTIONS(925), + [anon_sym___asm] = ACTIONS(925), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_u_SQUOTE] = ACTIONS(931), + [anon_sym_U_SQUOTE] = ACTIONS(931), + [anon_sym_u8_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_NULL] = ACTIONS(940), + [anon_sym_nullptr] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(787), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_if_token2] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [aux_sym_preproc_else_token1] = ACTIONS(793), - [aux_sym_preproc_elif_token1] = ACTIONS(793), - [aux_sym_preproc_elifdef_token1] = ACTIONS(793), - [aux_sym_preproc_elifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(49)] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_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_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(797), + [aux_sym_preproc_include_token1] = ACTIONS(943), + [aux_sym_preproc_def_token1] = ACTIONS(943), + [aux_sym_preproc_if_token1] = ACTIONS(943), + [aux_sym_preproc_if_token2] = ACTIONS(943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(943), + [aux_sym_preproc_else_token1] = ACTIONS(943), + [aux_sym_preproc_elif_token1] = ACTIONS(943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(943), + [aux_sym_preproc_elifdef_token2] = ACTIONS(943), + [sym_preproc_directive] = ACTIONS(943), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(943), + [anon_sym___clrcall] = ACTIONS(943), + [anon_sym___stdcall] = ACTIONS(943), + [anon_sym___fastcall] = ACTIONS(943), + [anon_sym___thiscall] = ACTIONS(943), + [anon_sym___vectorcall] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(805), + [anon_sym_else] = ACTIONS(943), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -20087,7 +21467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -20098,152 +21478,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [48] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(787), - [aux_sym_preproc_include_token1] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(795), - [aux_sym_preproc_if_token2] = ACTIONS(795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(795), - [aux_sym_preproc_else_token1] = ACTIONS(795), - [aux_sym_preproc_elif_token1] = ACTIONS(795), - [aux_sym_preproc_elifdef_token1] = ACTIONS(795), - [aux_sym_preproc_elifdef_token2] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(50)] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(945), + [aux_sym_preproc_include_token1] = ACTIONS(813), + [aux_sym_preproc_def_token1] = ACTIONS(813), + [aux_sym_preproc_if_token1] = ACTIONS(813), + [aux_sym_preproc_if_token2] = ACTIONS(813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(813), + [aux_sym_preproc_else_token1] = ACTIONS(813), + [aux_sym_preproc_elif_token1] = ACTIONS(813), + [aux_sym_preproc_elifdef_token1] = ACTIONS(813), + [aux_sym_preproc_elifdef_token2] = ACTIONS(813), + [sym_preproc_directive] = ACTIONS(813), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(127), - [anon_sym_typedef] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(795), - [anon_sym___clrcall] = ACTIONS(795), - [anon_sym___stdcall] = ACTIONS(795), - [anon_sym___fastcall] = ACTIONS(795), - [anon_sym___thiscall] = ACTIONS(795), - [anon_sym___vectorcall] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(813), + [anon_sym___clrcall] = ACTIONS(813), + [anon_sym___stdcall] = ACTIONS(813), + [anon_sym___fastcall] = ACTIONS(813), + [anon_sym___thiscall] = ACTIONS(813), + [anon_sym___vectorcall] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_else] = ACTIONS(795), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(795), - [anon_sym_default] = ACTIONS(795), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(813), + [anon_sym_default] = ACTIONS(813), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -20254,7 +21633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -20265,315 +21644,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [49] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(797), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_if_token2] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [aux_sym_preproc_else_token1] = ACTIONS(800), - [aux_sym_preproc_elif_token1] = ACTIONS(800), - [aux_sym_preproc_elifdef_token1] = ACTIONS(800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym___extension__] = ACTIONS(817), - [anon_sym_typedef] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(859), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(865), - [anon_sym_do] = ACTIONS(868), - [anon_sym_for] = ACTIONS(871), - [anon_sym_return] = ACTIONS(874), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_goto] = ACTIONS(883), - [anon_sym___try] = ACTIONS(886), - [anon_sym___leave] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, - [50] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(64), - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [aux_sym_preproc_include_token1] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(51)] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(945), + [aux_sym_preproc_include_token1] = ACTIONS(943), + [aux_sym_preproc_def_token1] = ACTIONS(943), + [aux_sym_preproc_if_token1] = ACTIONS(943), + [aux_sym_preproc_if_token2] = ACTIONS(943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(943), + [aux_sym_preproc_else_token1] = ACTIONS(943), + [aux_sym_preproc_elif_token1] = ACTIONS(943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(943), + [aux_sym_preproc_elifdef_token2] = ACTIONS(943), + [sym_preproc_directive] = ACTIONS(943), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(795), - [anon_sym___clrcall] = ACTIONS(795), - [anon_sym___stdcall] = ACTIONS(795), - [anon_sym___fastcall] = ACTIONS(795), - [anon_sym___thiscall] = ACTIONS(795), - [anon_sym___vectorcall] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(943), + [anon_sym___clrcall] = ACTIONS(943), + [anon_sym___stdcall] = ACTIONS(943), + [anon_sym___fastcall] = ACTIONS(943), + [anon_sym___thiscall] = ACTIONS(943), + [anon_sym___vectorcall] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_else] = ACTIONS(795), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(795), - [anon_sym_default] = ACTIONS(795), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -20584,7 +21799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -20595,29 +21810,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [51] = { + [STATE(52)] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(947), + [aux_sym_preproc_include_token1] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(818), + [aux_sym_preproc_if_token2] = ACTIONS(818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(818), + [aux_sym_preproc_else_token1] = ACTIONS(818), + [aux_sym_preproc_elif_token1] = ACTIONS(818), + [aux_sym_preproc_elifdef_token1] = ACTIONS(818), + [aux_sym_preproc_elifdef_token2] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym___extension__] = ACTIONS(835), + [anon_sym_typedef] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(841), + [anon_sym___attribute__] = ACTIONS(844), + [anon_sym___attribute] = ACTIONS(844), + [anon_sym_const] = ACTIONS(847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(850), + [anon_sym___declspec] = ACTIONS(853), + [anon_sym___cdecl] = ACTIONS(818), + [anon_sym___clrcall] = ACTIONS(818), + [anon_sym___stdcall] = ACTIONS(818), + [anon_sym___fastcall] = ACTIONS(818), + [anon_sym___thiscall] = ACTIONS(818), + [anon_sym___vectorcall] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_signed] = ACTIONS(859), + [anon_sym_unsigned] = ACTIONS(859), + [anon_sym_long] = ACTIONS(859), + [anon_sym_short] = ACTIONS(859), + [anon_sym_static] = ACTIONS(841), + [anon_sym_auto] = ACTIONS(841), + [anon_sym_register] = ACTIONS(841), + [anon_sym_inline] = ACTIONS(841), + [anon_sym___inline] = ACTIONS(841), + [anon_sym___inline__] = ACTIONS(841), + [anon_sym___forceinline] = ACTIONS(841), + [anon_sym_thread_local] = ACTIONS(841), + [anon_sym___thread] = ACTIONS(841), + [anon_sym_constexpr] = ACTIONS(847), + [anon_sym_volatile] = ACTIONS(847), + [anon_sym_restrict] = ACTIONS(847), + [anon_sym___restrict__] = ACTIONS(847), + [anon_sym__Atomic] = ACTIONS(847), + [anon_sym__Noreturn] = ACTIONS(847), + [anon_sym_noreturn] = ACTIONS(847), + [anon_sym__Nonnull] = ACTIONS(847), + [anon_sym_alignas] = ACTIONS(862), + [anon_sym__Alignas] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_union] = ACTIONS(874), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(880), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(886), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(892), + [anon_sym_break] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(901), + [anon_sym___try] = ACTIONS(904), + [anon_sym___leave] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(913), + [anon_sym___alignof__] = ACTIONS(916), + [anon_sym___alignof] = ACTIONS(916), + [anon_sym__alignof] = ACTIONS(916), + [anon_sym_alignof] = ACTIONS(916), + [anon_sym__Alignof] = ACTIONS(916), + [anon_sym_offsetof] = ACTIONS(919), + [anon_sym__Generic] = ACTIONS(922), + [anon_sym_asm] = ACTIONS(925), + [anon_sym___asm__] = ACTIONS(925), + [anon_sym___asm] = ACTIONS(925), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_u_SQUOTE] = ACTIONS(931), + [anon_sym_U_SQUOTE] = ACTIONS(931), + [anon_sym_u8_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_NULL] = ACTIONS(940), + [anon_sym_nullptr] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [STATE(53)] = { [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), [sym_attributed_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym_expression_statement] = STATE(50), @@ -20632,111 +22013,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(50), [sym_seh_try_statement] = STATE(50), [sym_seh_leave_statement] = STATE(50), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), [aux_sym_case_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(927), - [aux_sym_preproc_include_token1] = ACTIONS(791), - [aux_sym_preproc_def_token1] = ACTIONS(791), - [aux_sym_preproc_if_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(791), - [sym_preproc_directive] = ACTIONS(791), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym_identifier] = ACTIONS(945), + [aux_sym_preproc_include_token1] = ACTIONS(799), + [aux_sym_preproc_def_token1] = ACTIONS(799), + [aux_sym_preproc_if_token1] = ACTIONS(799), + [aux_sym_preproc_if_token2] = ACTIONS(799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(799), + [aux_sym_preproc_else_token1] = ACTIONS(799), + [aux_sym_preproc_elif_token1] = ACTIONS(799), + [aux_sym_preproc_elifdef_token1] = ACTIONS(799), + [aux_sym_preproc_elifdef_token2] = ACTIONS(799), + [sym_preproc_directive] = ACTIONS(799), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(791), - [anon_sym___clrcall] = ACTIONS(791), - [anon_sym___stdcall] = ACTIONS(791), - [anon_sym___fastcall] = ACTIONS(791), - [anon_sym___thiscall] = ACTIONS(791), - [anon_sym___vectorcall] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(799), + [anon_sym___clrcall] = ACTIONS(799), + [anon_sym___stdcall] = ACTIONS(799), + [anon_sym___fastcall] = ACTIONS(799), + [anon_sym___thiscall] = ACTIONS(799), + [anon_sym___vectorcall] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_else] = ACTIONS(791), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(791), - [anon_sym_default] = ACTIONS(791), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(799), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -20747,7 +22131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -20758,148 +22142,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym_seh_try_statement] = STATE(55), - [sym_seh_leave_statement] = STATE(55), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_include_token1] = ACTIONS(791), - [aux_sym_preproc_def_token1] = ACTIONS(791), - [aux_sym_preproc_if_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(791), - [sym_preproc_directive] = ACTIONS(791), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(791), - [anon_sym___clrcall] = ACTIONS(791), - [anon_sym___stdcall] = ACTIONS(791), - [anon_sym___fastcall] = ACTIONS(791), - [anon_sym___thiscall] = ACTIONS(791), - [anon_sym___vectorcall] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(791), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(791), - [anon_sym_default] = ACTIONS(791), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [STATE(54)] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(2128), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -20910,7 +22295,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -20921,148 +22308,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [STATE(55)] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(2265), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -21073,7 +22461,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -21084,148 +22474,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym_seh_try_statement] = STATE(53), - [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_include_token1] = ACTIONS(789), - [aux_sym_preproc_def_token1] = ACTIONS(789), - [aux_sym_preproc_if_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(789), - [sym_preproc_directive] = ACTIONS(789), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(56)] = { + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_seh_try_statement] = STATE(51), + [sym_seh_leave_statement] = STATE(51), + [sym_expression] = STATE(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(945), + [aux_sym_preproc_include_token1] = ACTIONS(811), + [aux_sym_preproc_def_token1] = ACTIONS(811), + [aux_sym_preproc_if_token1] = ACTIONS(811), + [aux_sym_preproc_if_token2] = ACTIONS(811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(811), + [aux_sym_preproc_else_token1] = ACTIONS(811), + [aux_sym_preproc_elif_token1] = ACTIONS(811), + [aux_sym_preproc_elifdef_token1] = ACTIONS(811), + [aux_sym_preproc_elifdef_token2] = ACTIONS(811), + [sym_preproc_directive] = ACTIONS(811), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(789), - [anon_sym___clrcall] = ACTIONS(789), - [anon_sym___stdcall] = ACTIONS(789), - [anon_sym___fastcall] = ACTIONS(789), - [anon_sym___thiscall] = ACTIONS(789), - [anon_sym___vectorcall] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(811), + [anon_sym___clrcall] = ACTIONS(811), + [anon_sym___stdcall] = ACTIONS(811), + [anon_sym___fastcall] = ACTIONS(811), + [anon_sym___thiscall] = ACTIONS(811), + [anon_sym___vectorcall] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(811), + [anon_sym_default] = ACTIONS(811), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -21236,7 +22629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -21247,148 +22640,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [55] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_include_token1] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(374), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(795), - [anon_sym___clrcall] = ACTIONS(795), - [anon_sym___stdcall] = ACTIONS(795), - [anon_sym___fastcall] = ACTIONS(795), - [anon_sym___thiscall] = ACTIONS(795), - [anon_sym___vectorcall] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(795), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(795), - [anon_sym_default] = ACTIONS(795), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [STATE(57)] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(2244), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -21399,7 +22793,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -21410,311 +22806,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(943), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym___extension__] = ACTIONS(949), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(963), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(969), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(975), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_goto] = ACTIONS(984), - [anon_sym___try] = ACTIONS(987), - [anon_sym___leave] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, - [57] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(789), - [aux_sym_preproc_def_token1] = ACTIONS(789), - [aux_sym_preproc_if_token1] = ACTIONS(789), - [aux_sym_preproc_if_token2] = ACTIONS(789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(789), - [sym_preproc_directive] = ACTIONS(789), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(789), - [anon_sym___clrcall] = ACTIONS(789), - [anon_sym___stdcall] = ACTIONS(789), - [anon_sym___fastcall] = ACTIONS(789), - [anon_sym___thiscall] = ACTIONS(789), - [anon_sym___vectorcall] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [STATE(58)] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(2256), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -21725,7 +22959,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -21736,148 +22972,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(791), - [aux_sym_preproc_def_token1] = ACTIONS(791), - [aux_sym_preproc_if_token1] = ACTIONS(791), - [aux_sym_preproc_if_token2] = ACTIONS(791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(791), - [sym_preproc_directive] = ACTIONS(791), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(59)] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(66), + [ts_builtin_sym_end] = ACTIONS(985), + [sym_identifier] = ACTIONS(987), + [aux_sym_preproc_include_token1] = ACTIONS(943), + [aux_sym_preproc_def_token1] = ACTIONS(943), + [aux_sym_preproc_if_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(943), + [sym_preproc_directive] = ACTIONS(943), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(791), - [anon_sym___clrcall] = ACTIONS(791), - [anon_sym___stdcall] = ACTIONS(791), - [anon_sym___fastcall] = ACTIONS(791), - [anon_sym___thiscall] = ACTIONS(791), - [anon_sym___vectorcall] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(943), + [anon_sym___clrcall] = ACTIONS(943), + [anon_sym___stdcall] = ACTIONS(943), + [anon_sym___fastcall] = ACTIONS(943), + [anon_sym___thiscall] = ACTIONS(943), + [anon_sym___vectorcall] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(791), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(791), - [anon_sym_default] = ACTIONS(791), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(943), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -21888,7 +23124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -21899,148 +23135,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(795), - [aux_sym_preproc_if_token2] = ACTIONS(795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(60)] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(1003), + [aux_sym_preproc_include_token1] = ACTIONS(799), + [aux_sym_preproc_def_token1] = ACTIONS(799), + [aux_sym_preproc_if_token1] = ACTIONS(799), + [aux_sym_preproc_if_token2] = ACTIONS(799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(799), + [sym_preproc_directive] = ACTIONS(799), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(795), - [anon_sym___clrcall] = ACTIONS(795), - [anon_sym___stdcall] = ACTIONS(795), - [anon_sym___fastcall] = ACTIONS(795), - [anon_sym___thiscall] = ACTIONS(795), - [anon_sym___vectorcall] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(799), + [anon_sym___clrcall] = ACTIONS(799), + [anon_sym___stdcall] = ACTIONS(799), + [anon_sym___fastcall] = ACTIONS(799), + [anon_sym___thiscall] = ACTIONS(799), + [anon_sym___vectorcall] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(795), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(795), - [anon_sym_default] = ACTIONS(795), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(799), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(799), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -22051,7 +23287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -22062,148 +23298,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_if_token2] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(61)] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(1003), + [aux_sym_preproc_include_token1] = ACTIONS(943), + [aux_sym_preproc_def_token1] = ACTIONS(943), + [aux_sym_preproc_if_token1] = ACTIONS(943), + [aux_sym_preproc_if_token2] = ACTIONS(943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(943), + [sym_preproc_directive] = ACTIONS(943), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(943), + [anon_sym___clrcall] = ACTIONS(943), + [anon_sym___stdcall] = ACTIONS(943), + [anon_sym___fastcall] = ACTIONS(943), + [anon_sym___thiscall] = ACTIONS(943), + [anon_sym___vectorcall] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(943), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -22214,7 +23450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -22225,192 +23461,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(995), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_if_token2] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym___extension__] = ACTIONS(1001), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(1013), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_goto] = ACTIONS(1034), - [anon_sym___try] = ACTIONS(1037), - [anon_sym___leave] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, - [62] = { + [STATE(62)] = { [sym_declaration] = STATE(63), [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), [sym_attributed_statement] = STATE(63), [sym_labeled_statement] = STATE(63), [sym_expression_statement] = STATE(63), @@ -22425,111 +23498,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(63), [sym_seh_try_statement] = STATE(63), [sym_seh_leave_statement] = STATE(63), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), [aux_sym_case_statement_repeat1] = STATE(63), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(927), - [aux_sym_preproc_include_token1] = ACTIONS(789), - [aux_sym_preproc_def_token1] = ACTIONS(789), - [aux_sym_preproc_if_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(789), - [sym_preproc_directive] = ACTIONS(789), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym_identifier] = ACTIONS(1003), + [aux_sym_preproc_include_token1] = ACTIONS(813), + [aux_sym_preproc_def_token1] = ACTIONS(813), + [aux_sym_preproc_if_token1] = ACTIONS(813), + [aux_sym_preproc_if_token2] = ACTIONS(813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(813), + [sym_preproc_directive] = ACTIONS(813), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(789), - [anon_sym___clrcall] = ACTIONS(789), - [anon_sym___stdcall] = ACTIONS(789), - [anon_sym___fastcall] = ACTIONS(789), - [anon_sym___thiscall] = ACTIONS(789), - [anon_sym___vectorcall] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(813), + [anon_sym___clrcall] = ACTIONS(813), + [anon_sym___stdcall] = ACTIONS(813), + [anon_sym___fastcall] = ACTIONS(813), + [anon_sym___thiscall] = ACTIONS(813), + [anon_sym___vectorcall] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_else] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(813), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(813), + [anon_sym_default] = ACTIONS(813), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -22540,7 +23613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -22551,148 +23624,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(64), - [ts_builtin_sym_end] = ACTIONS(939), - [sym_identifier] = ACTIONS(927), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(63)] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(1011), + [aux_sym_preproc_include_token1] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(818), + [aux_sym_preproc_if_token2] = ACTIONS(818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym___extension__] = ACTIONS(1017), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(841), + [anon_sym___attribute__] = ACTIONS(844), + [anon_sym___attribute] = ACTIONS(844), + [anon_sym_const] = ACTIONS(847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(850), + [anon_sym___declspec] = ACTIONS(853), + [anon_sym___cdecl] = ACTIONS(818), + [anon_sym___clrcall] = ACTIONS(818), + [anon_sym___stdcall] = ACTIONS(818), + [anon_sym___fastcall] = ACTIONS(818), + [anon_sym___thiscall] = ACTIONS(818), + [anon_sym___vectorcall] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_signed] = ACTIONS(859), + [anon_sym_unsigned] = ACTIONS(859), + [anon_sym_long] = ACTIONS(859), + [anon_sym_short] = ACTIONS(859), + [anon_sym_static] = ACTIONS(841), + [anon_sym_auto] = ACTIONS(841), + [anon_sym_register] = ACTIONS(841), + [anon_sym_inline] = ACTIONS(841), + [anon_sym___inline] = ACTIONS(841), + [anon_sym___inline__] = ACTIONS(841), + [anon_sym___forceinline] = ACTIONS(841), + [anon_sym_thread_local] = ACTIONS(841), + [anon_sym___thread] = ACTIONS(841), + [anon_sym_constexpr] = ACTIONS(847), + [anon_sym_volatile] = ACTIONS(847), + [anon_sym_restrict] = ACTIONS(847), + [anon_sym___restrict__] = ACTIONS(847), + [anon_sym__Atomic] = ACTIONS(847), + [anon_sym__Noreturn] = ACTIONS(847), + [anon_sym_noreturn] = ACTIONS(847), + [anon_sym__Nonnull] = ACTIONS(847), + [anon_sym_alignas] = ACTIONS(862), + [anon_sym__Alignas] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_union] = ACTIONS(874), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(1029), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_goto] = ACTIONS(1050), + [anon_sym___try] = ACTIONS(1053), + [anon_sym___leave] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(913), + [anon_sym___alignof__] = ACTIONS(916), + [anon_sym___alignof] = ACTIONS(916), + [anon_sym__alignof] = ACTIONS(916), + [anon_sym_alignof] = ACTIONS(916), + [anon_sym__Alignof] = ACTIONS(916), + [anon_sym_offsetof] = ACTIONS(919), + [anon_sym__Generic] = ACTIONS(922), + [anon_sym_asm] = ACTIONS(925), + [anon_sym___asm__] = ACTIONS(925), + [anon_sym___asm] = ACTIONS(925), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_u_SQUOTE] = ACTIONS(931), + [anon_sym_U_SQUOTE] = ACTIONS(931), + [anon_sym_u8_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_NULL] = ACTIONS(940), + [anon_sym_nullptr] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [STATE(64)] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym_seh_try_statement] = STATE(59), + [sym_seh_leave_statement] = STATE(59), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(59), + [ts_builtin_sym_end] = ACTIONS(1059), + [sym_identifier] = ACTIONS(987), + [aux_sym_preproc_include_token1] = ACTIONS(811), + [aux_sym_preproc_def_token1] = ACTIONS(811), + [aux_sym_preproc_if_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(811), + [sym_preproc_directive] = ACTIONS(811), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(991), [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(811), + [anon_sym___clrcall] = ACTIONS(811), + [anon_sym___stdcall] = ACTIONS(811), + [anon_sym___fastcall] = ACTIONS(811), + [anon_sym___thiscall] = ACTIONS(811), + [anon_sym___vectorcall] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_else] = ACTIONS(793), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(811), [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(69), + [anon_sym_case] = ACTIONS(811), + [anon_sym_default] = ACTIONS(811), + [anon_sym_while] = ACTIONS(995), [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), + [anon_sym_for] = ACTIONS(997), [anon_sym_return] = ACTIONS(75), [anon_sym_break] = ACTIONS(77), [anon_sym_continue] = ACTIONS(79), [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -22703,7 +23939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -22714,296 +23950,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [aux_sym_case_statement_repeat1] = STATE(64), - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(1043), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym___extension__] = ACTIONS(1049), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(1061), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1079), - [anon_sym_goto] = ACTIONS(1082), - [anon_sym___try] = ACTIONS(1085), - [anon_sym___leave] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, - [65] = { - [sym_declaration] = STATE(192), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(192), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(65)] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(66), + [ts_builtin_sym_end] = ACTIONS(1061), + [sym_identifier] = ACTIONS(987), + [aux_sym_preproc_include_token1] = ACTIONS(813), + [aux_sym_preproc_def_token1] = ACTIONS(813), + [aux_sym_preproc_if_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(813), + [sym_preproc_directive] = ACTIONS(813), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(813), + [anon_sym___clrcall] = ACTIONS(813), + [anon_sym___stdcall] = ACTIONS(813), + [anon_sym___fastcall] = ACTIONS(813), + [anon_sym___thiscall] = ACTIONS(813), + [anon_sym___vectorcall] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(813), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(813), + [anon_sym_default] = ACTIONS(813), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -23014,7 +24102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -23025,133 +24113,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(85), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1149), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(85), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(787), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(66)] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(66), + [ts_builtin_sym_end] = ACTIONS(1063), + [sym_identifier] = ACTIONS(1065), + [aux_sym_preproc_include_token1] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym___extension__] = ACTIONS(1071), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(841), + [anon_sym___attribute__] = ACTIONS(844), + [anon_sym___attribute] = ACTIONS(844), + [anon_sym_const] = ACTIONS(847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(850), + [anon_sym___declspec] = ACTIONS(853), + [anon_sym___cdecl] = ACTIONS(818), + [anon_sym___clrcall] = ACTIONS(818), + [anon_sym___stdcall] = ACTIONS(818), + [anon_sym___fastcall] = ACTIONS(818), + [anon_sym___thiscall] = ACTIONS(818), + [anon_sym___vectorcall] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_signed] = ACTIONS(859), + [anon_sym_unsigned] = ACTIONS(859), + [anon_sym_long] = ACTIONS(859), + [anon_sym_short] = ACTIONS(859), + [anon_sym_static] = ACTIONS(841), + [anon_sym_auto] = ACTIONS(841), + [anon_sym_register] = ACTIONS(841), + [anon_sym_inline] = ACTIONS(841), + [anon_sym___inline] = ACTIONS(841), + [anon_sym___inline__] = ACTIONS(841), + [anon_sym___forceinline] = ACTIONS(841), + [anon_sym_thread_local] = ACTIONS(841), + [anon_sym___thread] = ACTIONS(841), + [anon_sym_constexpr] = ACTIONS(847), + [anon_sym_volatile] = ACTIONS(847), + [anon_sym_restrict] = ACTIONS(847), + [anon_sym___restrict__] = ACTIONS(847), + [anon_sym__Atomic] = ACTIONS(847), + [anon_sym__Noreturn] = ACTIONS(847), + [anon_sym_noreturn] = ACTIONS(847), + [anon_sym__Nonnull] = ACTIONS(847), + [anon_sym_alignas] = ACTIONS(862), + [anon_sym__Alignas] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_union] = ACTIONS(874), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_else] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(1083), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1095), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym___try] = ACTIONS(1107), + [anon_sym___leave] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(913), + [anon_sym___alignof__] = ACTIONS(916), + [anon_sym___alignof] = ACTIONS(916), + [anon_sym__alignof] = ACTIONS(916), + [anon_sym_alignof] = ACTIONS(916), + [anon_sym__Alignof] = ACTIONS(916), + [anon_sym_offsetof] = ACTIONS(919), + [anon_sym__Generic] = ACTIONS(922), + [anon_sym_asm] = ACTIONS(925), + [anon_sym___asm__] = ACTIONS(925), + [anon_sym___asm] = ACTIONS(925), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_u_SQUOTE] = ACTIONS(931), + [anon_sym_U_SQUOTE] = ACTIONS(931), + [anon_sym_u8_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_NULL] = ACTIONS(940), + [anon_sym_nullptr] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [STATE(67)] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1113), + [sym_identifier] = ACTIONS(987), + [aux_sym_preproc_include_token1] = ACTIONS(799), + [aux_sym_preproc_def_token1] = ACTIONS(799), + [aux_sym_preproc_if_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(799), + [sym_preproc_directive] = ACTIONS(799), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(799), + [anon_sym___clrcall] = ACTIONS(799), + [anon_sym___stdcall] = ACTIONS(799), + [anon_sym___fastcall] = ACTIONS(799), + [anon_sym___thiscall] = ACTIONS(799), + [anon_sym___vectorcall] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(799), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(799), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -23162,7 +24428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -23173,29 +24439,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [67] = { + [STATE(68)] = { [sym_declaration] = STATE(70), [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), [sym_attributed_statement] = STATE(70), [sym_labeled_statement] = STATE(70), [sym_expression_statement] = STATE(70), @@ -23210,244 +24476,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(70), [sym_seh_try_statement] = STATE(70), [sym_seh_leave_statement] = STATE(70), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), [aux_sym_case_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(1093), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(791), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [68] = { - [sym_declaration] = STATE(227), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(250), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(227), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1093), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym_identifier] = ACTIONS(1115), + [aux_sym_preproc_include_token1] = ACTIONS(811), + [aux_sym_preproc_def_token1] = ACTIONS(811), + [aux_sym_preproc_if_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(811), + [sym_preproc_directive] = ACTIONS(811), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(811), + [anon_sym___clrcall] = ACTIONS(811), + [anon_sym___stdcall] = ACTIONS(811), + [anon_sym___fastcall] = ACTIONS(811), + [anon_sym___thiscall] = ACTIONS(811), + [anon_sym___vectorcall] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(811), + [anon_sym_default] = ACTIONS(811), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -23458,7 +24591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -23469,29 +24602,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [69] = { + [STATE(69)] = { [sym_declaration] = STATE(71), [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), [sym_attributed_statement] = STATE(71), [sym_labeled_statement] = STATE(71), [sym_expression_statement] = STATE(71), @@ -23506,96 +24639,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(71), [sym_seh_try_statement] = STATE(71), [sym_seh_leave_statement] = STATE(71), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), [aux_sym_case_statement_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(1093), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym_identifier] = ACTIONS(1115), + [aux_sym_preproc_include_token1] = ACTIONS(799), + [aux_sym_preproc_def_token1] = ACTIONS(799), + [aux_sym_preproc_if_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(799), + [sym_preproc_directive] = ACTIONS(799), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(799), + [anon_sym___clrcall] = ACTIONS(799), + [anon_sym___stdcall] = ACTIONS(799), + [anon_sym___fastcall] = ACTIONS(799), + [anon_sym___thiscall] = ACTIONS(799), + [anon_sym___vectorcall] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(1113), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(799), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(799), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -23606,7 +24754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -23617,29 +24765,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [70] = { + [STATE(70)] = { [sym_declaration] = STATE(72), [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), [sym_attributed_statement] = STATE(72), [sym_labeled_statement] = STATE(72), [sym_expression_statement] = STATE(72), @@ -23654,96 +24802,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(72), [sym_seh_try_statement] = STATE(72), [sym_seh_leave_statement] = STATE(72), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1093), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym_identifier] = ACTIONS(1115), + [aux_sym_preproc_include_token1] = ACTIONS(943), + [aux_sym_preproc_def_token1] = ACTIONS(943), + [aux_sym_preproc_if_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(943), + [sym_preproc_directive] = ACTIONS(943), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(943), + [anon_sym___clrcall] = ACTIONS(943), + [anon_sym___stdcall] = ACTIONS(943), + [anon_sym___fastcall] = ACTIONS(943), + [anon_sym___thiscall] = ACTIONS(943), + [anon_sym___vectorcall] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(795), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(943), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -23754,7 +24917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -23765,29 +24928,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [71] = { + [STATE(71)] = { [sym_declaration] = STATE(72), [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), [sym_attributed_statement] = STATE(72), [sym_labeled_statement] = STATE(72), [sym_expression_statement] = STATE(72), @@ -23802,96 +24965,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(72), [sym_seh_try_statement] = STATE(72), [sym_seh_leave_statement] = STATE(72), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1093), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym_identifier] = ACTIONS(1115), + [aux_sym_preproc_include_token1] = ACTIONS(813), + [aux_sym_preproc_def_token1] = ACTIONS(813), + [aux_sym_preproc_if_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(813), + [sym_preproc_directive] = ACTIONS(813), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(813), + [anon_sym___clrcall] = ACTIONS(813), + [anon_sym___stdcall] = ACTIONS(813), + [anon_sym___fastcall] = ACTIONS(813), + [anon_sym___thiscall] = ACTIONS(813), + [anon_sym___vectorcall] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(813), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(813), + [anon_sym_default] = ACTIONS(813), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -23902,7 +25080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -23913,29 +25091,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [72] = { + [STATE(72)] = { [sym_declaration] = STATE(72), [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), [sym_attributed_statement] = STATE(72), [sym_labeled_statement] = STATE(72), [sym_expression_statement] = STATE(72), @@ -23950,244 +25128,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(72), [sym_seh_try_statement] = STATE(72), [sym_seh_leave_statement] = STATE(72), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym___extension__] = ACTIONS(1049), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym___attribute] = ACTIONS(826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(829), - [anon_sym___declspec] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_signed] = ACTIONS(838), - [anon_sym_unsigned] = ACTIONS(838), - [anon_sym_long] = ACTIONS(838), - [anon_sym_short] = ACTIONS(838), - [anon_sym_static] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___inline] = ACTIONS(823), - [anon_sym___inline__] = ACTIONS(823), - [anon_sym___forceinline] = ACTIONS(823), - [anon_sym_thread_local] = ACTIONS(823), - [anon_sym___thread] = ACTIONS(823), - [anon_sym_const] = ACTIONS(841), - [anon_sym_constexpr] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym___restrict__] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym__Noreturn] = ACTIONS(841), - [anon_sym_noreturn] = ACTIONS(841), - [anon_sym__Nonnull] = ACTIONS(841), - [anon_sym_alignas] = ACTIONS(844), - [anon_sym__Alignas] = ACTIONS(844), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_union] = ACTIONS(856), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1079), - [anon_sym_goto] = ACTIONS(1082), - [anon_sym___try] = ACTIONS(1119), - [anon_sym___leave] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(895), - [anon_sym___alignof__] = ACTIONS(898), - [anon_sym___alignof] = ACTIONS(898), - [anon_sym__alignof] = ACTIONS(898), - [anon_sym_alignof] = ACTIONS(898), - [anon_sym__Alignof] = ACTIONS(898), - [anon_sym_offsetof] = ACTIONS(901), - [anon_sym__Generic] = ACTIONS(904), - [anon_sym_asm] = ACTIONS(907), - [anon_sym___asm__] = ACTIONS(907), - [anon_sym___asm] = ACTIONS(907), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(913), - [anon_sym_u_SQUOTE] = ACTIONS(913), - [anon_sym_U_SQUOTE] = ACTIONS(913), - [anon_sym_u8_SQUOTE] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(919), - [sym_false] = ACTIONS(919), - [anon_sym_NULL] = ACTIONS(922), - [anon_sym_nullptr] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, - [73] = { - [sym_declaration] = STATE(227), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1154), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(159), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(227), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(927), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(841), + [anon_sym___attribute__] = ACTIONS(844), + [anon_sym___attribute] = ACTIONS(844), + [anon_sym_const] = ACTIONS(847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(850), + [anon_sym___declspec] = ACTIONS(853), + [anon_sym___cdecl] = ACTIONS(818), + [anon_sym___clrcall] = ACTIONS(818), + [anon_sym___stdcall] = ACTIONS(818), + [anon_sym___fastcall] = ACTIONS(818), + [anon_sym___thiscall] = ACTIONS(818), + [anon_sym___vectorcall] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_signed] = ACTIONS(859), + [anon_sym_unsigned] = ACTIONS(859), + [anon_sym_long] = ACTIONS(859), + [anon_sym_short] = ACTIONS(859), + [anon_sym_static] = ACTIONS(841), + [anon_sym_auto] = ACTIONS(841), + [anon_sym_register] = ACTIONS(841), + [anon_sym_inline] = ACTIONS(841), + [anon_sym___inline] = ACTIONS(841), + [anon_sym___inline__] = ACTIONS(841), + [anon_sym___forceinline] = ACTIONS(841), + [anon_sym_thread_local] = ACTIONS(841), + [anon_sym___thread] = ACTIONS(841), + [anon_sym_constexpr] = ACTIONS(847), + [anon_sym_volatile] = ACTIONS(847), + [anon_sym_restrict] = ACTIONS(847), + [anon_sym___restrict__] = ACTIONS(847), + [anon_sym__Atomic] = ACTIONS(847), + [anon_sym__Noreturn] = ACTIONS(847), + [anon_sym_noreturn] = ACTIONS(847), + [anon_sym__Nonnull] = ACTIONS(847), + [anon_sym_alignas] = ACTIONS(862), + [anon_sym__Alignas] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_union] = ACTIONS(874), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(1141), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_while] = ACTIONS(1144), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1168), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(913), + [anon_sym___alignof__] = ACTIONS(916), + [anon_sym___alignof] = ACTIONS(916), + [anon_sym__alignof] = ACTIONS(916), + [anon_sym_alignof] = ACTIONS(916), + [anon_sym__Alignof] = ACTIONS(916), + [anon_sym_offsetof] = ACTIONS(919), + [anon_sym__Generic] = ACTIONS(922), + [anon_sym_asm] = ACTIONS(925), + [anon_sym___asm__] = ACTIONS(925), + [anon_sym___asm] = ACTIONS(925), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_u_SQUOTE] = ACTIONS(931), + [anon_sym_U_SQUOTE] = ACTIONS(931), + [anon_sym_u8_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_NULL] = ACTIONS(940), + [anon_sym_nullptr] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [STATE(73)] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym_seh_try_statement] = STATE(61), + [sym_seh_leave_statement] = STATE(61), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1003), + [aux_sym_preproc_include_token1] = ACTIONS(811), + [aux_sym_preproc_def_token1] = ACTIONS(811), + [aux_sym_preproc_if_token1] = ACTIONS(811), + [aux_sym_preproc_if_token2] = ACTIONS(811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(811), + [sym_preproc_directive] = ACTIONS(811), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(811), + [anon_sym___clrcall] = ACTIONS(811), + [anon_sym___stdcall] = ACTIONS(811), + [anon_sym___fastcall] = ACTIONS(811), + [anon_sym___thiscall] = ACTIONS(811), + [anon_sym___vectorcall] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(65), - [anon_sym_default] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(811), + [anon_sym_default] = ACTIONS(811), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -24198,7 +25406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -24209,133 +25417,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [74] = { - [sym_declaration] = STATE(196), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1152), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(407), - [sym_ms_declspec_modifier] = STATE(710), - [sym_compound_statement] = STATE(180), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(196), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(993), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(74)] = { + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(811), + [aux_sym_preproc_def_token1] = ACTIONS(811), + [aux_sym_preproc_if_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(811), + [sym_preproc_directive] = ACTIONS(811), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(811), + [anon_sym___clrcall] = ACTIONS(811), + [anon_sym___stdcall] = ACTIONS(811), + [anon_sym___fastcall] = ACTIONS(811), + [anon_sym___thiscall] = ACTIONS(811), + [anon_sym___vectorcall] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(811), + [anon_sym_default] = ACTIONS(811), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -24346,7 +25568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -24357,102 +25579,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1874), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(75)] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(1173), + [aux_sym_preproc_include_token1] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(841), + [anon_sym___attribute__] = ACTIONS(844), + [anon_sym___attribute] = ACTIONS(844), + [anon_sym_const] = ACTIONS(847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(850), + [anon_sym___declspec] = ACTIONS(853), + [anon_sym___cdecl] = ACTIONS(818), + [anon_sym___clrcall] = ACTIONS(818), + [anon_sym___stdcall] = ACTIONS(818), + [anon_sym___fastcall] = ACTIONS(818), + [anon_sym___thiscall] = ACTIONS(818), + [anon_sym___vectorcall] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_signed] = ACTIONS(859), + [anon_sym_unsigned] = ACTIONS(859), + [anon_sym_long] = ACTIONS(859), + [anon_sym_short] = ACTIONS(859), + [anon_sym_static] = ACTIONS(841), + [anon_sym_auto] = ACTIONS(841), + [anon_sym_register] = ACTIONS(841), + [anon_sym_inline] = ACTIONS(841), + [anon_sym___inline] = ACTIONS(841), + [anon_sym___inline__] = ACTIONS(841), + [anon_sym___forceinline] = ACTIONS(841), + [anon_sym_thread_local] = ACTIONS(841), + [anon_sym___thread] = ACTIONS(841), + [anon_sym_constexpr] = ACTIONS(847), + [anon_sym_volatile] = ACTIONS(847), + [anon_sym_restrict] = ACTIONS(847), + [anon_sym___restrict__] = ACTIONS(847), + [anon_sym__Atomic] = ACTIONS(847), + [anon_sym__Noreturn] = ACTIONS(847), + [anon_sym_noreturn] = ACTIONS(847), + [anon_sym__Nonnull] = ACTIONS(847), + [anon_sym_alignas] = ACTIONS(862), + [anon_sym__Alignas] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_union] = ACTIONS(874), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_switch] = ACTIONS(1141), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1182), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1162), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1168), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(913), + [anon_sym___alignof__] = ACTIONS(916), + [anon_sym___alignof] = ACTIONS(916), + [anon_sym__alignof] = ACTIONS(916), + [anon_sym_alignof] = ACTIONS(916), + [anon_sym__Alignof] = ACTIONS(916), + [anon_sym_offsetof] = ACTIONS(919), + [anon_sym__Generic] = ACTIONS(922), + [anon_sym_asm] = ACTIONS(925), + [anon_sym___asm__] = ACTIONS(925), + [anon_sym___asm] = ACTIONS(925), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_u_SQUOTE] = ACTIONS(931), + [anon_sym_U_SQUOTE] = ACTIONS(931), + [anon_sym_u8_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_NULL] = ACTIONS(940), + [anon_sym_nullptr] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [STATE(76)] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(813), + [aux_sym_preproc_def_token1] = ACTIONS(813), + [aux_sym_preproc_if_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(813), + [sym_preproc_directive] = ACTIONS(813), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(813), + [anon_sym___clrcall] = ACTIONS(813), + [anon_sym___stdcall] = ACTIONS(813), + [anon_sym___fastcall] = ACTIONS(813), + [anon_sym___thiscall] = ACTIONS(813), + [anon_sym___vectorcall] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(813), + [anon_sym_default] = ACTIONS(813), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -24463,7 +25892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -24474,102 +25903,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [76] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1995), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(77)] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(943), + [aux_sym_preproc_def_token1] = ACTIONS(943), + [aux_sym_preproc_if_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(943), + [sym_preproc_directive] = ACTIONS(943), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(943), + [anon_sym___clrcall] = ACTIONS(943), + [anon_sym___stdcall] = ACTIONS(943), + [anon_sym___fastcall] = ACTIONS(943), + [anon_sym___thiscall] = ACTIONS(943), + [anon_sym___vectorcall] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -24580,7 +26054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -24591,102 +26065,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [77] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1815), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(78)] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(78), + [sym_labeled_statement] = STATE(78), + [sym_expression_statement] = STATE(78), + [sym_if_statement] = STATE(78), + [sym_switch_statement] = STATE(78), + [sym_while_statement] = STATE(78), + [sym_do_statement] = STATE(78), + [sym_for_statement] = STATE(78), + [sym_return_statement] = STATE(78), + [sym_break_statement] = STATE(78), + [sym_continue_statement] = STATE(78), + [sym_goto_statement] = STATE(78), + [sym_seh_try_statement] = STATE(78), + [sym_seh_leave_statement] = STATE(78), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1185), + [aux_sym_preproc_include_token1] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(818), + [aux_sym_preproc_if_token2] = ACTIONS(818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym___extension__] = ACTIONS(1017), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(841), + [anon_sym___attribute__] = ACTIONS(844), + [anon_sym___attribute] = ACTIONS(844), + [anon_sym_const] = ACTIONS(847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(850), + [anon_sym___declspec] = ACTIONS(853), + [anon_sym___cdecl] = ACTIONS(818), + [anon_sym___clrcall] = ACTIONS(818), + [anon_sym___stdcall] = ACTIONS(818), + [anon_sym___fastcall] = ACTIONS(818), + [anon_sym___thiscall] = ACTIONS(818), + [anon_sym___vectorcall] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_signed] = ACTIONS(859), + [anon_sym_unsigned] = ACTIONS(859), + [anon_sym_long] = ACTIONS(859), + [anon_sym_short] = ACTIONS(859), + [anon_sym_static] = ACTIONS(841), + [anon_sym_auto] = ACTIONS(841), + [anon_sym_register] = ACTIONS(841), + [anon_sym_inline] = ACTIONS(841), + [anon_sym___inline] = ACTIONS(841), + [anon_sym___inline__] = ACTIONS(841), + [anon_sym___forceinline] = ACTIONS(841), + [anon_sym_thread_local] = ACTIONS(841), + [anon_sym___thread] = ACTIONS(841), + [anon_sym_constexpr] = ACTIONS(847), + [anon_sym_volatile] = ACTIONS(847), + [anon_sym_restrict] = ACTIONS(847), + [anon_sym___restrict__] = ACTIONS(847), + [anon_sym__Atomic] = ACTIONS(847), + [anon_sym__Noreturn] = ACTIONS(847), + [anon_sym_noreturn] = ACTIONS(847), + [anon_sym__Nonnull] = ACTIONS(847), + [anon_sym_alignas] = ACTIONS(862), + [anon_sym__Alignas] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_union] = ACTIONS(874), + [anon_sym_if] = ACTIONS(1188), + [anon_sym_switch] = ACTIONS(1029), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_goto] = ACTIONS(1050), + [anon_sym___try] = ACTIONS(1053), + [anon_sym___leave] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(913), + [anon_sym___alignof__] = ACTIONS(916), + [anon_sym___alignof] = ACTIONS(916), + [anon_sym__alignof] = ACTIONS(916), + [anon_sym_alignof] = ACTIONS(916), + [anon_sym__Alignof] = ACTIONS(916), + [anon_sym_offsetof] = ACTIONS(919), + [anon_sym__Generic] = ACTIONS(922), + [anon_sym_asm] = ACTIONS(925), + [anon_sym___asm__] = ACTIONS(925), + [anon_sym___asm] = ACTIONS(925), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_u_SQUOTE] = ACTIONS(931), + [anon_sym_U_SQUOTE] = ACTIONS(931), + [anon_sym_u8_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_NULL] = ACTIONS(940), + [anon_sym_nullptr] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [STATE(79)] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(799), + [aux_sym_preproc_def_token1] = ACTIONS(799), + [aux_sym_preproc_if_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(799), + [sym_preproc_directive] = ACTIONS(799), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(382), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(799), + [anon_sym___clrcall] = ACTIONS(799), + [anon_sym___stdcall] = ACTIONS(799), + [anon_sym___fastcall] = ACTIONS(799), + [anon_sym___thiscall] = ACTIONS(799), + [anon_sym___vectorcall] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(1113), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(799), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -24697,7 +26378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -24708,102 +26389,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [78] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1937), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(80)] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(78), + [sym_labeled_statement] = STATE(78), + [sym_expression_statement] = STATE(78), + [sym_if_statement] = STATE(78), + [sym_switch_statement] = STATE(78), + [sym_while_statement] = STATE(78), + [sym_do_statement] = STATE(78), + [sym_for_statement] = STATE(78), + [sym_return_statement] = STATE(78), + [sym_break_statement] = STATE(78), + [sym_continue_statement] = STATE(78), + [sym_goto_statement] = STATE(78), + [sym_seh_try_statement] = STATE(78), + [sym_seh_leave_statement] = STATE(78), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(813), + [aux_sym_preproc_def_token1] = ACTIONS(813), + [aux_sym_preproc_if_token1] = ACTIONS(813), + [aux_sym_preproc_if_token2] = ACTIONS(813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(813), + [sym_preproc_directive] = ACTIONS(813), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(813), + [anon_sym___clrcall] = ACTIONS(813), + [anon_sym___stdcall] = ACTIONS(813), + [anon_sym___fastcall] = ACTIONS(813), + [anon_sym___thiscall] = ACTIONS(813), + [anon_sym___vectorcall] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(813), + [anon_sym_default] = ACTIONS(813), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -24814,7 +26540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -24825,102 +26551,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [79] = { - [sym_declaration] = STATE(491), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__for_statement_body] = STATE(1838), - [sym_expression] = STATE(1058), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1837), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [STATE(81)] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(78), + [sym_labeled_statement] = STATE(78), + [sym_expression_statement] = STATE(78), + [sym_if_statement] = STATE(78), + [sym_switch_statement] = STATE(78), + [sym_while_statement] = STATE(78), + [sym_do_statement] = STATE(78), + [sym_for_statement] = STATE(78), + [sym_return_statement] = STATE(78), + [sym_break_statement] = STATE(78), + [sym_continue_statement] = STATE(78), + [sym_goto_statement] = STATE(78), + [sym_seh_try_statement] = STATE(78), + [sym_seh_leave_statement] = STATE(78), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(943), + [aux_sym_preproc_def_token1] = ACTIONS(943), + [aux_sym_preproc_if_token1] = ACTIONS(943), + [aux_sym_preproc_if_token2] = ACTIONS(943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(943), + [sym_preproc_directive] = ACTIONS(943), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(943), + [anon_sym___clrcall] = ACTIONS(943), + [anon_sym___stdcall] = ACTIONS(943), + [anon_sym___fastcall] = ACTIONS(943), + [anon_sym___thiscall] = ACTIONS(943), + [anon_sym___vectorcall] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), [anon_sym_alignas] = ACTIONS(51), [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(803), [anon_sym_enum] = ACTIONS(55), [anon_sym_struct] = ACTIONS(57), [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -24931,7 +26702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -24942,20195 +26713,3746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [80] = { - [sym_else_clause] = STATE(90), - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token2] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [aux_sym_preproc_else_token1] = ACTIONS(1128), - [aux_sym_preproc_elif_token1] = ACTIONS(1128), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym___extension__] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym___attribute] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), - [anon_sym___declspec] = ACTIONS(1128), - [anon_sym___cdecl] = ACTIONS(1128), - [anon_sym___clrcall] = ACTIONS(1128), - [anon_sym___stdcall] = ACTIONS(1128), - [anon_sym___fastcall] = ACTIONS(1128), - [anon_sym___thiscall] = ACTIONS(1128), - [anon_sym___vectorcall] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___inline] = ACTIONS(1128), - [anon_sym___inline__] = ACTIONS(1128), - [anon_sym___forceinline] = ACTIONS(1128), - [anon_sym_thread_local] = ACTIONS(1128), - [anon_sym___thread] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym___restrict__] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym__Noreturn] = ACTIONS(1128), - [anon_sym_noreturn] = ACTIONS(1128), - [anon_sym__Nonnull] = ACTIONS(1128), - [anon_sym_alignas] = ACTIONS(1128), - [anon_sym__Alignas] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1132), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1128), - [anon_sym___leave] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym___alignof__] = ACTIONS(1128), - [anon_sym___alignof] = ACTIONS(1128), - [anon_sym__alignof] = ACTIONS(1128), - [anon_sym_alignof] = ACTIONS(1128), - [anon_sym__Alignof] = ACTIONS(1128), - [anon_sym_offsetof] = ACTIONS(1128), - [anon_sym__Generic] = ACTIONS(1128), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym___asm__] = ACTIONS(1128), - [anon_sym___asm] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym_u_SQUOTE] = ACTIONS(1130), - [anon_sym_U_SQUOTE] = ACTIONS(1130), - [anon_sym_u8_SQUOTE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_u_DQUOTE] = ACTIONS(1130), - [anon_sym_U_DQUOTE] = ACTIONS(1130), - [anon_sym_u8_DQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_NULL] = ACTIONS(1128), - [anon_sym_nullptr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - }, - [81] = { - [sym_identifier] = ACTIONS(1134), - [aux_sym_preproc_include_token1] = ACTIONS(1134), - [aux_sym_preproc_def_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token2] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), - [aux_sym_preproc_else_token1] = ACTIONS(1134), - [aux_sym_preproc_elif_token1] = ACTIONS(1134), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1134), - [sym_preproc_directive] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym___extension__] = ACTIONS(1134), - [anon_sym_typedef] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym___attribute__] = ACTIONS(1134), - [anon_sym___attribute] = ACTIONS(1134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym___declspec] = ACTIONS(1134), - [anon_sym___cdecl] = ACTIONS(1134), - [anon_sym___clrcall] = ACTIONS(1134), - [anon_sym___stdcall] = ACTIONS(1134), - [anon_sym___fastcall] = ACTIONS(1134), - [anon_sym___thiscall] = ACTIONS(1134), - [anon_sym___vectorcall] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym___inline] = ACTIONS(1134), - [anon_sym___inline__] = ACTIONS(1134), - [anon_sym___forceinline] = ACTIONS(1134), - [anon_sym_thread_local] = ACTIONS(1134), - [anon_sym___thread] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_constexpr] = ACTIONS(1134), - [anon_sym_volatile] = ACTIONS(1134), - [anon_sym_restrict] = ACTIONS(1134), - [anon_sym___restrict__] = ACTIONS(1134), - [anon_sym__Atomic] = ACTIONS(1134), - [anon_sym__Noreturn] = ACTIONS(1134), - [anon_sym_noreturn] = ACTIONS(1134), - [anon_sym__Nonnull] = ACTIONS(1134), - [anon_sym_alignas] = ACTIONS(1134), - [anon_sym__Alignas] = ACTIONS(1134), - [sym_primitive_type] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_else] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_goto] = ACTIONS(1134), - [anon_sym___try] = ACTIONS(1134), - [anon_sym___leave] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym___alignof__] = ACTIONS(1134), - [anon_sym___alignof] = ACTIONS(1134), - [anon_sym__alignof] = ACTIONS(1134), - [anon_sym_alignof] = ACTIONS(1134), - [anon_sym__Alignof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = ACTIONS(1134), - [anon_sym_asm] = ACTIONS(1134), - [anon_sym___asm__] = ACTIONS(1134), - [anon_sym___asm] = ACTIONS(1134), - [sym_number_literal] = ACTIONS(1136), - [anon_sym_L_SQUOTE] = ACTIONS(1136), - [anon_sym_u_SQUOTE] = ACTIONS(1136), - [anon_sym_U_SQUOTE] = ACTIONS(1136), - [anon_sym_u8_SQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_L_DQUOTE] = ACTIONS(1136), - [anon_sym_u_DQUOTE] = ACTIONS(1136), - [anon_sym_U_DQUOTE] = ACTIONS(1136), - [anon_sym_u8_DQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_true] = ACTIONS(1134), - [sym_false] = ACTIONS(1134), - [anon_sym_NULL] = ACTIONS(1134), - [anon_sym_nullptr] = ACTIONS(1134), - [sym_comment] = ACTIONS(3), - }, - [82] = { - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token2] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [aux_sym_preproc_else_token1] = ACTIONS(1138), - [aux_sym_preproc_elif_token1] = ACTIONS(1138), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym___extension__] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym___attribute__] = ACTIONS(1138), - [anon_sym___attribute] = ACTIONS(1138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym___declspec] = ACTIONS(1138), - [anon_sym___cdecl] = ACTIONS(1138), - [anon_sym___clrcall] = ACTIONS(1138), - [anon_sym___stdcall] = ACTIONS(1138), - [anon_sym___fastcall] = ACTIONS(1138), - [anon_sym___thiscall] = ACTIONS(1138), - [anon_sym___vectorcall] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym___inline] = ACTIONS(1138), - [anon_sym___inline__] = ACTIONS(1138), - [anon_sym___forceinline] = ACTIONS(1138), - [anon_sym_thread_local] = ACTIONS(1138), - [anon_sym___thread] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_constexpr] = ACTIONS(1138), - [anon_sym_volatile] = ACTIONS(1138), - [anon_sym_restrict] = ACTIONS(1138), - [anon_sym___restrict__] = ACTIONS(1138), - [anon_sym__Atomic] = ACTIONS(1138), - [anon_sym__Noreturn] = ACTIONS(1138), - [anon_sym_noreturn] = ACTIONS(1138), - [anon_sym__Nonnull] = ACTIONS(1138), - [anon_sym_alignas] = ACTIONS(1138), - [anon_sym__Alignas] = ACTIONS(1138), - [sym_primitive_type] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_goto] = ACTIONS(1138), - [anon_sym___try] = ACTIONS(1138), - [anon_sym___leave] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym___alignof__] = ACTIONS(1138), - [anon_sym___alignof] = ACTIONS(1138), - [anon_sym__alignof] = ACTIONS(1138), - [anon_sym_alignof] = ACTIONS(1138), - [anon_sym__Alignof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = ACTIONS(1138), - [anon_sym_asm] = ACTIONS(1138), - [anon_sym___asm__] = ACTIONS(1138), - [anon_sym___asm] = ACTIONS(1138), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1140), - [anon_sym_u_SQUOTE] = ACTIONS(1140), - [anon_sym_U_SQUOTE] = ACTIONS(1140), - [anon_sym_u8_SQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_L_DQUOTE] = ACTIONS(1140), - [anon_sym_u_DQUOTE] = ACTIONS(1140), - [anon_sym_U_DQUOTE] = ACTIONS(1140), - [anon_sym_u8_DQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [anon_sym_NULL] = ACTIONS(1138), - [anon_sym_nullptr] = ACTIONS(1138), - [sym_comment] = ACTIONS(3), - }, - [83] = { - [sym_identifier] = ACTIONS(1142), - [aux_sym_preproc_include_token1] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token2] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), - [aux_sym_preproc_else_token1] = ACTIONS(1142), - [aux_sym_preproc_elif_token1] = ACTIONS(1142), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym___extension__] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1142), - [anon_sym___attribute] = ACTIONS(1142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym___declspec] = ACTIONS(1142), - [anon_sym___cdecl] = ACTIONS(1142), - [anon_sym___clrcall] = ACTIONS(1142), - [anon_sym___stdcall] = ACTIONS(1142), - [anon_sym___fastcall] = ACTIONS(1142), - [anon_sym___thiscall] = ACTIONS(1142), - [anon_sym___vectorcall] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1142), - [anon_sym_unsigned] = ACTIONS(1142), - [anon_sym_long] = ACTIONS(1142), - [anon_sym_short] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_auto] = ACTIONS(1142), - [anon_sym_register] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1142), - [anon_sym___inline] = ACTIONS(1142), - [anon_sym___inline__] = ACTIONS(1142), - [anon_sym___forceinline] = ACTIONS(1142), - [anon_sym_thread_local] = ACTIONS(1142), - [anon_sym___thread] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_constexpr] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1142), - [anon_sym_restrict] = ACTIONS(1142), - [anon_sym___restrict__] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1142), - [anon_sym__Noreturn] = ACTIONS(1142), - [anon_sym_noreturn] = ACTIONS(1142), - [anon_sym__Nonnull] = ACTIONS(1142), - [anon_sym_alignas] = ACTIONS(1142), - [anon_sym__Alignas] = ACTIONS(1142), - [sym_primitive_type] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_goto] = ACTIONS(1142), - [anon_sym___try] = ACTIONS(1142), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1142), - [anon_sym___alignof__] = ACTIONS(1142), - [anon_sym___alignof] = ACTIONS(1142), - [anon_sym__alignof] = ACTIONS(1142), - [anon_sym_alignof] = ACTIONS(1142), - [anon_sym__Alignof] = ACTIONS(1142), - [anon_sym_offsetof] = ACTIONS(1142), - [anon_sym__Generic] = ACTIONS(1142), - [anon_sym_asm] = ACTIONS(1142), - [anon_sym___asm__] = ACTIONS(1142), - [anon_sym___asm] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1144), - [anon_sym_L_SQUOTE] = ACTIONS(1144), - [anon_sym_u_SQUOTE] = ACTIONS(1144), - [anon_sym_U_SQUOTE] = ACTIONS(1144), - [anon_sym_u8_SQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_L_DQUOTE] = ACTIONS(1144), - [anon_sym_u_DQUOTE] = ACTIONS(1144), - [anon_sym_U_DQUOTE] = ACTIONS(1144), - [anon_sym_u8_DQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_true] = ACTIONS(1142), - [sym_false] = ACTIONS(1142), - [anon_sym_NULL] = ACTIONS(1142), - [anon_sym_nullptr] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - }, - [84] = { - [sym_identifier] = ACTIONS(1146), - [aux_sym_preproc_include_token1] = ACTIONS(1146), - [aux_sym_preproc_def_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token2] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), - [aux_sym_preproc_else_token1] = ACTIONS(1146), - [aux_sym_preproc_elif_token1] = ACTIONS(1146), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1146), - [sym_preproc_directive] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym___extension__] = ACTIONS(1146), - [anon_sym_typedef] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym___attribute__] = ACTIONS(1146), - [anon_sym___attribute] = ACTIONS(1146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), - [anon_sym___declspec] = ACTIONS(1146), - [anon_sym___cdecl] = ACTIONS(1146), - [anon_sym___clrcall] = ACTIONS(1146), - [anon_sym___stdcall] = ACTIONS(1146), - [anon_sym___fastcall] = ACTIONS(1146), - [anon_sym___thiscall] = ACTIONS(1146), - [anon_sym___vectorcall] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_signed] = ACTIONS(1146), - [anon_sym_unsigned] = ACTIONS(1146), - [anon_sym_long] = ACTIONS(1146), - [anon_sym_short] = ACTIONS(1146), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_auto] = ACTIONS(1146), - [anon_sym_register] = ACTIONS(1146), - [anon_sym_inline] = ACTIONS(1146), - [anon_sym___inline] = ACTIONS(1146), - [anon_sym___inline__] = ACTIONS(1146), - [anon_sym___forceinline] = ACTIONS(1146), - [anon_sym_thread_local] = ACTIONS(1146), - [anon_sym___thread] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_constexpr] = ACTIONS(1146), - [anon_sym_volatile] = ACTIONS(1146), - [anon_sym_restrict] = ACTIONS(1146), - [anon_sym___restrict__] = ACTIONS(1146), - [anon_sym__Atomic] = ACTIONS(1146), - [anon_sym__Noreturn] = ACTIONS(1146), - [anon_sym_noreturn] = ACTIONS(1146), - [anon_sym__Nonnull] = ACTIONS(1146), - [anon_sym_alignas] = ACTIONS(1146), - [anon_sym__Alignas] = ACTIONS(1146), - [sym_primitive_type] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1146), - [anon_sym___leave] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_sizeof] = ACTIONS(1146), - [anon_sym___alignof__] = ACTIONS(1146), - [anon_sym___alignof] = ACTIONS(1146), - [anon_sym__alignof] = ACTIONS(1146), - [anon_sym_alignof] = ACTIONS(1146), - [anon_sym__Alignof] = ACTIONS(1146), - [anon_sym_offsetof] = ACTIONS(1146), - [anon_sym__Generic] = ACTIONS(1146), - [anon_sym_asm] = ACTIONS(1146), - [anon_sym___asm__] = ACTIONS(1146), - [anon_sym___asm] = ACTIONS(1146), - [sym_number_literal] = ACTIONS(1148), - [anon_sym_L_SQUOTE] = ACTIONS(1148), - [anon_sym_u_SQUOTE] = ACTIONS(1148), - [anon_sym_U_SQUOTE] = ACTIONS(1148), - [anon_sym_u8_SQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1146), - [sym_false] = ACTIONS(1146), - [anon_sym_NULL] = ACTIONS(1146), - [anon_sym_nullptr] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - }, - [85] = { - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token2] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [aux_sym_preproc_else_token1] = ACTIONS(1150), - [aux_sym_preproc_elif_token1] = ACTIONS(1150), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1150), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym___attribute] = ACTIONS(1150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), - [anon_sym___declspec] = ACTIONS(1150), - [anon_sym___cdecl] = ACTIONS(1150), - [anon_sym___clrcall] = ACTIONS(1150), - [anon_sym___stdcall] = ACTIONS(1150), - [anon_sym___fastcall] = ACTIONS(1150), - [anon_sym___thiscall] = ACTIONS(1150), - [anon_sym___vectorcall] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym___inline] = ACTIONS(1150), - [anon_sym___inline__] = ACTIONS(1150), - [anon_sym___forceinline] = ACTIONS(1150), - [anon_sym_thread_local] = ACTIONS(1150), - [anon_sym___thread] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_constexpr] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym___restrict__] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym__Noreturn] = ACTIONS(1150), - [anon_sym_noreturn] = ACTIONS(1150), - [anon_sym__Nonnull] = ACTIONS(1150), - [anon_sym_alignas] = ACTIONS(1150), - [anon_sym__Alignas] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1150), - [anon_sym___leave] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [anon_sym___alignof__] = ACTIONS(1150), - [anon_sym___alignof] = ACTIONS(1150), - [anon_sym__alignof] = ACTIONS(1150), - [anon_sym_alignof] = ACTIONS(1150), - [anon_sym__Alignof] = ACTIONS(1150), - [anon_sym_offsetof] = ACTIONS(1150), - [anon_sym__Generic] = ACTIONS(1150), - [anon_sym_asm] = ACTIONS(1150), - [anon_sym___asm__] = ACTIONS(1150), - [anon_sym___asm] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [anon_sym_NULL] = ACTIONS(1150), - [anon_sym_nullptr] = ACTIONS(1150), - [sym_comment] = ACTIONS(3), - }, - [86] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [aux_sym_preproc_elif_token1] = ACTIONS(1154), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [87] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [aux_sym_preproc_elif_token1] = ACTIONS(1154), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [88] = { - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token2] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), - [aux_sym_preproc_else_token1] = ACTIONS(1158), - [aux_sym_preproc_elif_token1] = ACTIONS(1158), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym___extension__] = ACTIONS(1158), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym___attribute__] = ACTIONS(1158), - [anon_sym___attribute] = ACTIONS(1158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(1158), - [anon_sym___cdecl] = ACTIONS(1158), - [anon_sym___clrcall] = ACTIONS(1158), - [anon_sym___stdcall] = ACTIONS(1158), - [anon_sym___fastcall] = ACTIONS(1158), - [anon_sym___thiscall] = ACTIONS(1158), - [anon_sym___vectorcall] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_signed] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_inline] = ACTIONS(1158), - [anon_sym___inline] = ACTIONS(1158), - [anon_sym___inline__] = ACTIONS(1158), - [anon_sym___forceinline] = ACTIONS(1158), - [anon_sym_thread_local] = ACTIONS(1158), - [anon_sym___thread] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_constexpr] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym___restrict__] = ACTIONS(1158), - [anon_sym__Atomic] = ACTIONS(1158), - [anon_sym__Noreturn] = ACTIONS(1158), - [anon_sym_noreturn] = ACTIONS(1158), - [anon_sym__Nonnull] = ACTIONS(1158), - [anon_sym_alignas] = ACTIONS(1158), - [anon_sym__Alignas] = ACTIONS(1158), - [sym_primitive_type] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym___try] = ACTIONS(1158), - [anon_sym___leave] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_sizeof] = ACTIONS(1158), - [anon_sym___alignof__] = ACTIONS(1158), - [anon_sym___alignof] = ACTIONS(1158), - [anon_sym__alignof] = ACTIONS(1158), - [anon_sym_alignof] = ACTIONS(1158), - [anon_sym__Alignof] = ACTIONS(1158), - [anon_sym_offsetof] = ACTIONS(1158), - [anon_sym__Generic] = ACTIONS(1158), - [anon_sym_asm] = ACTIONS(1158), - [anon_sym___asm__] = ACTIONS(1158), - [anon_sym___asm] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1160), - [anon_sym_L_SQUOTE] = ACTIONS(1160), - [anon_sym_u_SQUOTE] = ACTIONS(1160), - [anon_sym_U_SQUOTE] = ACTIONS(1160), - [anon_sym_u8_SQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_L_DQUOTE] = ACTIONS(1160), - [anon_sym_u_DQUOTE] = ACTIONS(1160), - [anon_sym_U_DQUOTE] = ACTIONS(1160), - [anon_sym_u8_DQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [anon_sym_NULL] = ACTIONS(1158), - [anon_sym_nullptr] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - }, - [89] = { - [sym_identifier] = ACTIONS(1162), - [aux_sym_preproc_include_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token2] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), - [aux_sym_preproc_else_token1] = ACTIONS(1162), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1162), - [sym_preproc_directive] = ACTIONS(1162), - [anon_sym_LPAREN2] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym___extension__] = ACTIONS(1162), - [anon_sym_typedef] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym___attribute__] = ACTIONS(1162), - [anon_sym___attribute] = ACTIONS(1162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), - [anon_sym___declspec] = ACTIONS(1162), - [anon_sym___cdecl] = ACTIONS(1162), - [anon_sym___clrcall] = ACTIONS(1162), - [anon_sym___stdcall] = ACTIONS(1162), - [anon_sym___fastcall] = ACTIONS(1162), - [anon_sym___thiscall] = ACTIONS(1162), - [anon_sym___vectorcall] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_signed] = ACTIONS(1162), - [anon_sym_unsigned] = ACTIONS(1162), - [anon_sym_long] = ACTIONS(1162), - [anon_sym_short] = ACTIONS(1162), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_auto] = ACTIONS(1162), - [anon_sym_register] = ACTIONS(1162), - [anon_sym_inline] = ACTIONS(1162), - [anon_sym___inline] = ACTIONS(1162), - [anon_sym___inline__] = ACTIONS(1162), - [anon_sym___forceinline] = ACTIONS(1162), - [anon_sym_thread_local] = ACTIONS(1162), - [anon_sym___thread] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_constexpr] = ACTIONS(1162), - [anon_sym_volatile] = ACTIONS(1162), - [anon_sym_restrict] = ACTIONS(1162), - [anon_sym___restrict__] = ACTIONS(1162), - [anon_sym__Atomic] = ACTIONS(1162), - [anon_sym__Noreturn] = ACTIONS(1162), - [anon_sym_noreturn] = ACTIONS(1162), - [anon_sym__Nonnull] = ACTIONS(1162), - [anon_sym_alignas] = ACTIONS(1162), - [anon_sym__Alignas] = ACTIONS(1162), - [sym_primitive_type] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_else] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_do] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_goto] = ACTIONS(1162), - [anon_sym___try] = ACTIONS(1162), - [anon_sym___leave] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_sizeof] = ACTIONS(1162), - [anon_sym___alignof__] = ACTIONS(1162), - [anon_sym___alignof] = ACTIONS(1162), - [anon_sym__alignof] = ACTIONS(1162), - [anon_sym_alignof] = ACTIONS(1162), - [anon_sym__Alignof] = ACTIONS(1162), - [anon_sym_offsetof] = ACTIONS(1162), - [anon_sym__Generic] = ACTIONS(1162), - [anon_sym_asm] = ACTIONS(1162), - [anon_sym___asm__] = ACTIONS(1162), - [anon_sym___asm] = ACTIONS(1162), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_L_SQUOTE] = ACTIONS(1164), - [anon_sym_u_SQUOTE] = ACTIONS(1164), - [anon_sym_U_SQUOTE] = ACTIONS(1164), - [anon_sym_u8_SQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_L_DQUOTE] = ACTIONS(1164), - [anon_sym_u_DQUOTE] = ACTIONS(1164), - [anon_sym_U_DQUOTE] = ACTIONS(1164), - [anon_sym_u8_DQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_true] = ACTIONS(1162), - [sym_false] = ACTIONS(1162), - [anon_sym_NULL] = ACTIONS(1162), - [anon_sym_nullptr] = ACTIONS(1162), - [sym_comment] = ACTIONS(3), - }, - [90] = { - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token2] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [aux_sym_preproc_else_token1] = ACTIONS(1166), - [aux_sym_preproc_elif_token1] = ACTIONS(1166), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym___attribute] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym___declspec] = ACTIONS(1166), - [anon_sym___cdecl] = ACTIONS(1166), - [anon_sym___clrcall] = ACTIONS(1166), - [anon_sym___stdcall] = ACTIONS(1166), - [anon_sym___fastcall] = ACTIONS(1166), - [anon_sym___thiscall] = ACTIONS(1166), - [anon_sym___vectorcall] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym___inline] = ACTIONS(1166), - [anon_sym___inline__] = ACTIONS(1166), - [anon_sym___forceinline] = ACTIONS(1166), - [anon_sym_thread_local] = ACTIONS(1166), - [anon_sym___thread] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym___restrict__] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym__Noreturn] = ACTIONS(1166), - [anon_sym_noreturn] = ACTIONS(1166), - [anon_sym__Nonnull] = ACTIONS(1166), - [anon_sym_alignas] = ACTIONS(1166), - [anon_sym__Alignas] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_else] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym___try] = ACTIONS(1166), - [anon_sym___leave] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym___alignof__] = ACTIONS(1166), - [anon_sym___alignof] = ACTIONS(1166), - [anon_sym__alignof] = ACTIONS(1166), - [anon_sym_alignof] = ACTIONS(1166), - [anon_sym__Alignof] = ACTIONS(1166), - [anon_sym_offsetof] = ACTIONS(1166), - [anon_sym__Generic] = ACTIONS(1166), - [anon_sym_asm] = ACTIONS(1166), - [anon_sym___asm__] = ACTIONS(1166), - [anon_sym___asm] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [anon_sym_NULL] = ACTIONS(1166), - [anon_sym_nullptr] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - }, - [91] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token2] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [aux_sym_preproc_else_token1] = ACTIONS(1170), - [aux_sym_preproc_elif_token1] = ACTIONS(1170), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [92] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token2] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [aux_sym_preproc_else_token1] = ACTIONS(1170), - [aux_sym_preproc_elif_token1] = ACTIONS(1170), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [93] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token2] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [aux_sym_preproc_else_token1] = ACTIONS(1174), - [aux_sym_preproc_elif_token1] = ACTIONS(1174), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - }, - [94] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token2] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [aux_sym_preproc_else_token1] = ACTIONS(1174), - [aux_sym_preproc_elif_token1] = ACTIONS(1174), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - }, - [95] = { - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token2] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [aux_sym_preproc_else_token1] = ACTIONS(1178), - [aux_sym_preproc_elif_token1] = ACTIONS(1178), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym___extension__] = ACTIONS(1178), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym___attribute] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), - [anon_sym___declspec] = ACTIONS(1178), - [anon_sym___cdecl] = ACTIONS(1178), - [anon_sym___clrcall] = ACTIONS(1178), - [anon_sym___stdcall] = ACTIONS(1178), - [anon_sym___fastcall] = ACTIONS(1178), - [anon_sym___thiscall] = ACTIONS(1178), - [anon_sym___vectorcall] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym___inline] = ACTIONS(1178), - [anon_sym___inline__] = ACTIONS(1178), - [anon_sym___forceinline] = ACTIONS(1178), - [anon_sym_thread_local] = ACTIONS(1178), - [anon_sym___thread] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_constexpr] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym___restrict__] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym__Noreturn] = ACTIONS(1178), - [anon_sym_noreturn] = ACTIONS(1178), - [anon_sym__Nonnull] = ACTIONS(1178), - [anon_sym_alignas] = ACTIONS(1178), - [anon_sym__Alignas] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym___try] = ACTIONS(1178), - [anon_sym___leave] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [anon_sym___alignof__] = ACTIONS(1178), - [anon_sym___alignof] = ACTIONS(1178), - [anon_sym__alignof] = ACTIONS(1178), - [anon_sym_alignof] = ACTIONS(1178), - [anon_sym__Alignof] = ACTIONS(1178), - [anon_sym_offsetof] = ACTIONS(1178), - [anon_sym__Generic] = ACTIONS(1178), - [anon_sym_asm] = ACTIONS(1178), - [anon_sym___asm__] = ACTIONS(1178), - [anon_sym___asm] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [anon_sym_NULL] = ACTIONS(1178), - [anon_sym_nullptr] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - }, - [96] = { - [sym_identifier] = ACTIONS(1182), - [aux_sym_preproc_include_token1] = ACTIONS(1182), - [aux_sym_preproc_def_token1] = ACTIONS(1182), - [aux_sym_preproc_if_token1] = ACTIONS(1182), - [aux_sym_preproc_if_token2] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), - [aux_sym_preproc_else_token1] = ACTIONS(1182), - [aux_sym_preproc_elif_token1] = ACTIONS(1182), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1182), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1182), - [sym_preproc_directive] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym___extension__] = ACTIONS(1182), - [anon_sym_typedef] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1182), - [anon_sym___attribute__] = ACTIONS(1182), - [anon_sym___attribute] = ACTIONS(1182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1184), - [anon_sym___declspec] = ACTIONS(1182), - [anon_sym___cdecl] = ACTIONS(1182), - [anon_sym___clrcall] = ACTIONS(1182), - [anon_sym___stdcall] = ACTIONS(1182), - [anon_sym___fastcall] = ACTIONS(1182), - [anon_sym___thiscall] = ACTIONS(1182), - [anon_sym___vectorcall] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_signed] = ACTIONS(1182), - [anon_sym_unsigned] = ACTIONS(1182), - [anon_sym_long] = ACTIONS(1182), - [anon_sym_short] = ACTIONS(1182), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_auto] = ACTIONS(1182), - [anon_sym_register] = ACTIONS(1182), - [anon_sym_inline] = ACTIONS(1182), - [anon_sym___inline] = ACTIONS(1182), - [anon_sym___inline__] = ACTIONS(1182), - [anon_sym___forceinline] = ACTIONS(1182), - [anon_sym_thread_local] = ACTIONS(1182), - [anon_sym___thread] = ACTIONS(1182), - [anon_sym_const] = ACTIONS(1182), - [anon_sym_constexpr] = ACTIONS(1182), - [anon_sym_volatile] = ACTIONS(1182), - [anon_sym_restrict] = ACTIONS(1182), - [anon_sym___restrict__] = ACTIONS(1182), - [anon_sym__Atomic] = ACTIONS(1182), - [anon_sym__Noreturn] = ACTIONS(1182), - [anon_sym_noreturn] = ACTIONS(1182), - [anon_sym__Nonnull] = ACTIONS(1182), - [anon_sym_alignas] = ACTIONS(1182), - [anon_sym__Alignas] = ACTIONS(1182), - [sym_primitive_type] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1182), - [anon_sym_struct] = ACTIONS(1182), - [anon_sym_union] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_else] = ACTIONS(1182), - [anon_sym_switch] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1182), - [anon_sym_default] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1182), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1182), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1182), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_goto] = ACTIONS(1182), - [anon_sym___try] = ACTIONS(1182), - [anon_sym___leave] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_sizeof] = ACTIONS(1182), - [anon_sym___alignof__] = ACTIONS(1182), - [anon_sym___alignof] = ACTIONS(1182), - [anon_sym__alignof] = ACTIONS(1182), - [anon_sym_alignof] = ACTIONS(1182), - [anon_sym__Alignof] = ACTIONS(1182), - [anon_sym_offsetof] = ACTIONS(1182), - [anon_sym__Generic] = ACTIONS(1182), - [anon_sym_asm] = ACTIONS(1182), - [anon_sym___asm__] = ACTIONS(1182), - [anon_sym___asm] = ACTIONS(1182), - [sym_number_literal] = ACTIONS(1184), - [anon_sym_L_SQUOTE] = ACTIONS(1184), - [anon_sym_u_SQUOTE] = ACTIONS(1184), - [anon_sym_U_SQUOTE] = ACTIONS(1184), - [anon_sym_u8_SQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_L_DQUOTE] = ACTIONS(1184), - [anon_sym_u_DQUOTE] = ACTIONS(1184), - [anon_sym_U_DQUOTE] = ACTIONS(1184), - [anon_sym_u8_DQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_true] = ACTIONS(1182), - [sym_false] = ACTIONS(1182), - [anon_sym_NULL] = ACTIONS(1182), - [anon_sym_nullptr] = ACTIONS(1182), - [sym_comment] = ACTIONS(3), - }, - [97] = { - [sym_identifier] = ACTIONS(1186), - [aux_sym_preproc_include_token1] = ACTIONS(1186), - [aux_sym_preproc_def_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token2] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), - [aux_sym_preproc_else_token1] = ACTIONS(1186), - [aux_sym_preproc_elif_token1] = ACTIONS(1186), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1186), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1186), - [sym_preproc_directive] = ACTIONS(1186), - [anon_sym_LPAREN2] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym___extension__] = ACTIONS(1186), - [anon_sym_typedef] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym___attribute__] = ACTIONS(1186), - [anon_sym___attribute] = ACTIONS(1186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), - [anon_sym___declspec] = ACTIONS(1186), - [anon_sym___cdecl] = ACTIONS(1186), - [anon_sym___clrcall] = ACTIONS(1186), - [anon_sym___stdcall] = ACTIONS(1186), - [anon_sym___fastcall] = ACTIONS(1186), - [anon_sym___thiscall] = ACTIONS(1186), - [anon_sym___vectorcall] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_signed] = ACTIONS(1186), - [anon_sym_unsigned] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_auto] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_inline] = ACTIONS(1186), - [anon_sym___inline] = ACTIONS(1186), - [anon_sym___inline__] = ACTIONS(1186), - [anon_sym___forceinline] = ACTIONS(1186), - [anon_sym_thread_local] = ACTIONS(1186), - [anon_sym___thread] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_constexpr] = ACTIONS(1186), - [anon_sym_volatile] = ACTIONS(1186), - [anon_sym_restrict] = ACTIONS(1186), - [anon_sym___restrict__] = ACTIONS(1186), - [anon_sym__Atomic] = ACTIONS(1186), - [anon_sym__Noreturn] = ACTIONS(1186), - [anon_sym_noreturn] = ACTIONS(1186), - [anon_sym__Nonnull] = ACTIONS(1186), - [anon_sym_alignas] = ACTIONS(1186), - [anon_sym__Alignas] = ACTIONS(1186), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1186), - [anon_sym___try] = ACTIONS(1186), - [anon_sym___leave] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_sizeof] = ACTIONS(1186), - [anon_sym___alignof__] = ACTIONS(1186), - [anon_sym___alignof] = ACTIONS(1186), - [anon_sym__alignof] = ACTIONS(1186), - [anon_sym_alignof] = ACTIONS(1186), - [anon_sym__Alignof] = ACTIONS(1186), - [anon_sym_offsetof] = ACTIONS(1186), - [anon_sym__Generic] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym___asm__] = ACTIONS(1186), - [anon_sym___asm] = ACTIONS(1186), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(1188), - [anon_sym_u_SQUOTE] = ACTIONS(1188), - [anon_sym_U_SQUOTE] = ACTIONS(1188), - [anon_sym_u8_SQUOTE] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_L_DQUOTE] = ACTIONS(1188), - [anon_sym_u_DQUOTE] = ACTIONS(1188), - [anon_sym_U_DQUOTE] = ACTIONS(1188), - [anon_sym_u8_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_true] = ACTIONS(1186), - [sym_false] = ACTIONS(1186), - [anon_sym_NULL] = ACTIONS(1186), - [anon_sym_nullptr] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - }, - [98] = { - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token2] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [aux_sym_preproc_else_token1] = ACTIONS(1190), - [aux_sym_preproc_elif_token1] = ACTIONS(1190), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym___extension__] = ACTIONS(1190), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym___attribute] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym___inline] = ACTIONS(1190), - [anon_sym___inline__] = ACTIONS(1190), - [anon_sym___forceinline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym___thread] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym__Nonnull] = ACTIONS(1190), - [anon_sym_alignas] = ACTIONS(1190), - [anon_sym__Alignas] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym___alignof__] = ACTIONS(1190), - [anon_sym___alignof] = ACTIONS(1190), - [anon_sym__alignof] = ACTIONS(1190), - [anon_sym_alignof] = ACTIONS(1190), - [anon_sym__Alignof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [anon_sym___asm] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [99] = { - [sym_identifier] = ACTIONS(1194), - [aux_sym_preproc_include_token1] = ACTIONS(1194), - [aux_sym_preproc_def_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token2] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), - [aux_sym_preproc_else_token1] = ACTIONS(1194), - [aux_sym_preproc_elif_token1] = ACTIONS(1194), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1194), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1194), - [sym_preproc_directive] = ACTIONS(1194), - [anon_sym_LPAREN2] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym___extension__] = ACTIONS(1194), - [anon_sym_typedef] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym___attribute__] = ACTIONS(1194), - [anon_sym___attribute] = ACTIONS(1194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), - [anon_sym___declspec] = ACTIONS(1194), - [anon_sym___cdecl] = ACTIONS(1194), - [anon_sym___clrcall] = ACTIONS(1194), - [anon_sym___stdcall] = ACTIONS(1194), - [anon_sym___fastcall] = ACTIONS(1194), - [anon_sym___thiscall] = ACTIONS(1194), - [anon_sym___vectorcall] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1194), - [anon_sym_unsigned] = ACTIONS(1194), - [anon_sym_long] = ACTIONS(1194), - [anon_sym_short] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_auto] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_inline] = ACTIONS(1194), - [anon_sym___inline] = ACTIONS(1194), - [anon_sym___inline__] = ACTIONS(1194), - [anon_sym___forceinline] = ACTIONS(1194), - [anon_sym_thread_local] = ACTIONS(1194), - [anon_sym___thread] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_constexpr] = ACTIONS(1194), - [anon_sym_volatile] = ACTIONS(1194), - [anon_sym_restrict] = ACTIONS(1194), - [anon_sym___restrict__] = ACTIONS(1194), - [anon_sym__Atomic] = ACTIONS(1194), - [anon_sym__Noreturn] = ACTIONS(1194), - [anon_sym_noreturn] = ACTIONS(1194), - [anon_sym__Nonnull] = ACTIONS(1194), - [anon_sym_alignas] = ACTIONS(1194), - [anon_sym__Alignas] = ACTIONS(1194), - [sym_primitive_type] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_case] = ACTIONS(1194), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_goto] = ACTIONS(1194), - [anon_sym___try] = ACTIONS(1194), - [anon_sym___leave] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_sizeof] = ACTIONS(1194), - [anon_sym___alignof__] = ACTIONS(1194), - [anon_sym___alignof] = ACTIONS(1194), - [anon_sym__alignof] = ACTIONS(1194), - [anon_sym_alignof] = ACTIONS(1194), - [anon_sym__Alignof] = ACTIONS(1194), - [anon_sym_offsetof] = ACTIONS(1194), - [anon_sym__Generic] = ACTIONS(1194), - [anon_sym_asm] = ACTIONS(1194), - [anon_sym___asm__] = ACTIONS(1194), - [anon_sym___asm] = ACTIONS(1194), - [sym_number_literal] = ACTIONS(1196), - [anon_sym_L_SQUOTE] = ACTIONS(1196), - [anon_sym_u_SQUOTE] = ACTIONS(1196), - [anon_sym_U_SQUOTE] = ACTIONS(1196), - [anon_sym_u8_SQUOTE] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_L_DQUOTE] = ACTIONS(1196), - [anon_sym_u_DQUOTE] = ACTIONS(1196), - [anon_sym_U_DQUOTE] = ACTIONS(1196), - [anon_sym_u8_DQUOTE] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_true] = ACTIONS(1194), - [sym_false] = ACTIONS(1194), - [anon_sym_NULL] = ACTIONS(1194), - [anon_sym_nullptr] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - }, - [100] = { - [sym_identifier] = ACTIONS(1198), - [aux_sym_preproc_include_token1] = ACTIONS(1198), - [aux_sym_preproc_def_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token2] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), - [aux_sym_preproc_else_token1] = ACTIONS(1198), - [aux_sym_preproc_elif_token1] = ACTIONS(1198), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1198), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1198), - [sym_preproc_directive] = ACTIONS(1198), - [anon_sym_LPAREN2] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym___extension__] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym___attribute__] = ACTIONS(1198), - [anon_sym___attribute] = ACTIONS(1198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), - [anon_sym___declspec] = ACTIONS(1198), - [anon_sym___cdecl] = ACTIONS(1198), - [anon_sym___clrcall] = ACTIONS(1198), - [anon_sym___stdcall] = ACTIONS(1198), - [anon_sym___fastcall] = ACTIONS(1198), - [anon_sym___thiscall] = ACTIONS(1198), - [anon_sym___vectorcall] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_auto] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_inline] = ACTIONS(1198), - [anon_sym___inline] = ACTIONS(1198), - [anon_sym___inline__] = ACTIONS(1198), - [anon_sym___forceinline] = ACTIONS(1198), - [anon_sym_thread_local] = ACTIONS(1198), - [anon_sym___thread] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_constexpr] = ACTIONS(1198), - [anon_sym_volatile] = ACTIONS(1198), - [anon_sym_restrict] = ACTIONS(1198), - [anon_sym___restrict__] = ACTIONS(1198), - [anon_sym__Atomic] = ACTIONS(1198), - [anon_sym__Noreturn] = ACTIONS(1198), - [anon_sym_noreturn] = ACTIONS(1198), - [anon_sym__Nonnull] = ACTIONS(1198), - [anon_sym_alignas] = ACTIONS(1198), - [anon_sym__Alignas] = ACTIONS(1198), - [sym_primitive_type] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_switch] = ACTIONS(1198), - [anon_sym_case] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_goto] = ACTIONS(1198), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_sizeof] = ACTIONS(1198), - [anon_sym___alignof__] = ACTIONS(1198), - [anon_sym___alignof] = ACTIONS(1198), - [anon_sym__alignof] = ACTIONS(1198), - [anon_sym_alignof] = ACTIONS(1198), - [anon_sym__Alignof] = ACTIONS(1198), - [anon_sym_offsetof] = ACTIONS(1198), - [anon_sym__Generic] = ACTIONS(1198), - [anon_sym_asm] = ACTIONS(1198), - [anon_sym___asm__] = ACTIONS(1198), - [anon_sym___asm] = ACTIONS(1198), - [sym_number_literal] = ACTIONS(1200), - [anon_sym_L_SQUOTE] = ACTIONS(1200), - [anon_sym_u_SQUOTE] = ACTIONS(1200), - [anon_sym_U_SQUOTE] = ACTIONS(1200), - [anon_sym_u8_SQUOTE] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_L_DQUOTE] = ACTIONS(1200), - [anon_sym_u_DQUOTE] = ACTIONS(1200), - [anon_sym_U_DQUOTE] = ACTIONS(1200), - [anon_sym_u8_DQUOTE] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_true] = ACTIONS(1198), - [sym_false] = ACTIONS(1198), - [anon_sym_NULL] = ACTIONS(1198), - [anon_sym_nullptr] = ACTIONS(1198), + [STATE(82)] = { + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(811), + [aux_sym_preproc_def_token1] = ACTIONS(811), + [aux_sym_preproc_if_token1] = ACTIONS(811), + [aux_sym_preproc_if_token2] = ACTIONS(811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(811), + [sym_preproc_directive] = ACTIONS(811), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(811), + [anon_sym___clrcall] = ACTIONS(811), + [anon_sym___stdcall] = ACTIONS(811), + [anon_sym___fastcall] = ACTIONS(811), + [anon_sym___thiscall] = ACTIONS(811), + [anon_sym___vectorcall] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(811), + [anon_sym_default] = ACTIONS(811), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [101] = { - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token2] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [aux_sym_preproc_else_token1] = ACTIONS(1202), - [aux_sym_preproc_elif_token1] = ACTIONS(1202), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [102] = { - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token2] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [aux_sym_preproc_else_token1] = ACTIONS(1202), - [aux_sym_preproc_elif_token1] = ACTIONS(1202), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [103] = { - [sym_identifier] = ACTIONS(1206), - [aux_sym_preproc_include_token1] = ACTIONS(1206), - [aux_sym_preproc_def_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token2] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), - [aux_sym_preproc_else_token1] = ACTIONS(1206), - [aux_sym_preproc_elif_token1] = ACTIONS(1206), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1206), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1206), - [sym_preproc_directive] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym___extension__] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym___attribute__] = ACTIONS(1206), - [anon_sym___attribute] = ACTIONS(1206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), - [anon_sym___declspec] = ACTIONS(1206), - [anon_sym___cdecl] = ACTIONS(1206), - [anon_sym___clrcall] = ACTIONS(1206), - [anon_sym___stdcall] = ACTIONS(1206), - [anon_sym___fastcall] = ACTIONS(1206), - [anon_sym___thiscall] = ACTIONS(1206), - [anon_sym___vectorcall] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1206), - [anon_sym_unsigned] = ACTIONS(1206), - [anon_sym_long] = ACTIONS(1206), - [anon_sym_short] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_auto] = ACTIONS(1206), - [anon_sym_register] = ACTIONS(1206), - [anon_sym_inline] = ACTIONS(1206), - [anon_sym___inline] = ACTIONS(1206), - [anon_sym___inline__] = ACTIONS(1206), - [anon_sym___forceinline] = ACTIONS(1206), - [anon_sym_thread_local] = ACTIONS(1206), - [anon_sym___thread] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_constexpr] = ACTIONS(1206), - [anon_sym_volatile] = ACTIONS(1206), - [anon_sym_restrict] = ACTIONS(1206), - [anon_sym___restrict__] = ACTIONS(1206), - [anon_sym__Atomic] = ACTIONS(1206), - [anon_sym__Noreturn] = ACTIONS(1206), - [anon_sym_noreturn] = ACTIONS(1206), - [anon_sym__Nonnull] = ACTIONS(1206), - [anon_sym_alignas] = ACTIONS(1206), - [anon_sym__Alignas] = ACTIONS(1206), - [sym_primitive_type] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_union] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_switch] = ACTIONS(1206), - [anon_sym_case] = ACTIONS(1206), - [anon_sym_default] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_do] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_goto] = ACTIONS(1206), - [anon_sym___try] = ACTIONS(1206), - [anon_sym___leave] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_sizeof] = ACTIONS(1206), - [anon_sym___alignof__] = ACTIONS(1206), - [anon_sym___alignof] = ACTIONS(1206), - [anon_sym__alignof] = ACTIONS(1206), - [anon_sym_alignof] = ACTIONS(1206), - [anon_sym__Alignof] = ACTIONS(1206), - [anon_sym_offsetof] = ACTIONS(1206), - [anon_sym__Generic] = ACTIONS(1206), - [anon_sym_asm] = ACTIONS(1206), - [anon_sym___asm__] = ACTIONS(1206), - [anon_sym___asm] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(1208), - [anon_sym_L_SQUOTE] = ACTIONS(1208), - [anon_sym_u_SQUOTE] = ACTIONS(1208), - [anon_sym_U_SQUOTE] = ACTIONS(1208), - [anon_sym_u8_SQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_L_DQUOTE] = ACTIONS(1208), - [anon_sym_u_DQUOTE] = ACTIONS(1208), - [anon_sym_U_DQUOTE] = ACTIONS(1208), - [anon_sym_u8_DQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [anon_sym_NULL] = ACTIONS(1206), - [anon_sym_nullptr] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - }, - [104] = { - [sym_identifier] = ACTIONS(1210), - [aux_sym_preproc_include_token1] = ACTIONS(1210), - [aux_sym_preproc_def_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token2] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), - [aux_sym_preproc_else_token1] = ACTIONS(1210), - [aux_sym_preproc_elif_token1] = ACTIONS(1210), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1210), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1210), - [sym_preproc_directive] = ACTIONS(1210), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym___extension__] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym___attribute__] = ACTIONS(1210), - [anon_sym___attribute] = ACTIONS(1210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), - [anon_sym___declspec] = ACTIONS(1210), - [anon_sym___cdecl] = ACTIONS(1210), - [anon_sym___clrcall] = ACTIONS(1210), - [anon_sym___stdcall] = ACTIONS(1210), - [anon_sym___fastcall] = ACTIONS(1210), - [anon_sym___thiscall] = ACTIONS(1210), - [anon_sym___vectorcall] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1210), - [anon_sym_unsigned] = ACTIONS(1210), - [anon_sym_long] = ACTIONS(1210), - [anon_sym_short] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_auto] = ACTIONS(1210), - [anon_sym_register] = ACTIONS(1210), - [anon_sym_inline] = ACTIONS(1210), - [anon_sym___inline] = ACTIONS(1210), - [anon_sym___inline__] = ACTIONS(1210), - [anon_sym___forceinline] = ACTIONS(1210), - [anon_sym_thread_local] = ACTIONS(1210), - [anon_sym___thread] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_constexpr] = ACTIONS(1210), - [anon_sym_volatile] = ACTIONS(1210), - [anon_sym_restrict] = ACTIONS(1210), - [anon_sym___restrict__] = ACTIONS(1210), - [anon_sym__Atomic] = ACTIONS(1210), - [anon_sym__Noreturn] = ACTIONS(1210), - [anon_sym_noreturn] = ACTIONS(1210), - [anon_sym__Nonnull] = ACTIONS(1210), - [anon_sym_alignas] = ACTIONS(1210), - [anon_sym__Alignas] = ACTIONS(1210), - [sym_primitive_type] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1210), - [anon_sym___try] = ACTIONS(1210), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym___alignof__] = ACTIONS(1210), - [anon_sym___alignof] = ACTIONS(1210), - [anon_sym__alignof] = ACTIONS(1210), - [anon_sym_alignof] = ACTIONS(1210), - [anon_sym__Alignof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1210), - [anon_sym__Generic] = ACTIONS(1210), - [anon_sym_asm] = ACTIONS(1210), - [anon_sym___asm__] = ACTIONS(1210), - [anon_sym___asm] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_L_SQUOTE] = ACTIONS(1212), - [anon_sym_u_SQUOTE] = ACTIONS(1212), - [anon_sym_U_SQUOTE] = ACTIONS(1212), - [anon_sym_u8_SQUOTE] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_L_DQUOTE] = ACTIONS(1212), - [anon_sym_u_DQUOTE] = ACTIONS(1212), - [anon_sym_U_DQUOTE] = ACTIONS(1212), - [anon_sym_u8_DQUOTE] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_true] = ACTIONS(1210), - [sym_false] = ACTIONS(1210), - [anon_sym_NULL] = ACTIONS(1210), - [anon_sym_nullptr] = ACTIONS(1210), - [sym_comment] = ACTIONS(3), - }, - [105] = { - [sym_identifier] = ACTIONS(1214), - [aux_sym_preproc_include_token1] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token2] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [aux_sym_preproc_else_token1] = ACTIONS(1214), - [aux_sym_preproc_elif_token1] = ACTIONS(1214), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1214), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [anon_sym___attribute] = ACTIONS(1214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), - [anon_sym___declspec] = ACTIONS(1214), - [anon_sym___cdecl] = ACTIONS(1214), - [anon_sym___clrcall] = ACTIONS(1214), - [anon_sym___stdcall] = ACTIONS(1214), - [anon_sym___fastcall] = ACTIONS(1214), - [anon_sym___thiscall] = ACTIONS(1214), - [anon_sym___vectorcall] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___inline] = ACTIONS(1214), - [anon_sym___inline__] = ACTIONS(1214), - [anon_sym___forceinline] = ACTIONS(1214), - [anon_sym_thread_local] = ACTIONS(1214), - [anon_sym___thread] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_constexpr] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym___restrict__] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym__Noreturn] = ACTIONS(1214), - [anon_sym_noreturn] = ACTIONS(1214), - [anon_sym__Nonnull] = ACTIONS(1214), - [anon_sym_alignas] = ACTIONS(1214), - [anon_sym__Alignas] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym___try] = ACTIONS(1214), - [anon_sym___leave] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_sizeof] = ACTIONS(1214), - [anon_sym___alignof__] = ACTIONS(1214), - [anon_sym___alignof] = ACTIONS(1214), - [anon_sym__alignof] = ACTIONS(1214), - [anon_sym_alignof] = ACTIONS(1214), - [anon_sym__Alignof] = ACTIONS(1214), - [anon_sym_offsetof] = ACTIONS(1214), - [anon_sym__Generic] = ACTIONS(1214), - [anon_sym_asm] = ACTIONS(1214), - [anon_sym___asm__] = ACTIONS(1214), - [anon_sym___asm] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1216), - [anon_sym_L_SQUOTE] = ACTIONS(1216), - [anon_sym_u_SQUOTE] = ACTIONS(1216), - [anon_sym_U_SQUOTE] = ACTIONS(1216), - [anon_sym_u8_SQUOTE] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_L_DQUOTE] = ACTIONS(1216), - [anon_sym_u_DQUOTE] = ACTIONS(1216), - [anon_sym_U_DQUOTE] = ACTIONS(1216), - [anon_sym_u8_DQUOTE] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [anon_sym_NULL] = ACTIONS(1214), - [anon_sym_nullptr] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - }, - [106] = { - [sym_identifier] = ACTIONS(1218), - [aux_sym_preproc_include_token1] = ACTIONS(1218), - [aux_sym_preproc_def_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token2] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), - [aux_sym_preproc_else_token1] = ACTIONS(1218), - [aux_sym_preproc_elif_token1] = ACTIONS(1218), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_LPAREN2] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(1218), - [anon_sym___attribute] = ACTIONS(1218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), - [anon_sym___declspec] = ACTIONS(1218), - [anon_sym___cdecl] = ACTIONS(1218), - [anon_sym___clrcall] = ACTIONS(1218), - [anon_sym___stdcall] = ACTIONS(1218), - [anon_sym___fastcall] = ACTIONS(1218), - [anon_sym___thiscall] = ACTIONS(1218), - [anon_sym___vectorcall] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym___restrict__] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym__Noreturn] = ACTIONS(1218), - [anon_sym_noreturn] = ACTIONS(1218), - [anon_sym__Nonnull] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_goto] = ACTIONS(1218), - [anon_sym___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1218), - [anon_sym___asm__] = ACTIONS(1218), - [anon_sym___asm] = ACTIONS(1218), - [sym_number_literal] = ACTIONS(1220), - [anon_sym_L_SQUOTE] = ACTIONS(1220), - [anon_sym_u_SQUOTE] = ACTIONS(1220), - [anon_sym_U_SQUOTE] = ACTIONS(1220), - [anon_sym_u8_SQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1218), - [sym_false] = ACTIONS(1218), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - }, - [107] = { - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token2] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [aux_sym_preproc_else_token1] = ACTIONS(1222), - [aux_sym_preproc_elif_token1] = ACTIONS(1222), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___attribute] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym__Nonnull] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [anon_sym___asm] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), + [STATE(83)] = { + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym_seh_try_statement] = STATE(80), + [sym_seh_leave_statement] = STATE(80), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(799), + [aux_sym_preproc_def_token1] = ACTIONS(799), + [aux_sym_preproc_if_token1] = ACTIONS(799), + [aux_sym_preproc_if_token2] = ACTIONS(799), + [aux_sym_preproc_ifdef_token1] = ACTIONS(799), + [aux_sym_preproc_ifdef_token2] = ACTIONS(799), + [sym_preproc_directive] = ACTIONS(799), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(799), + [anon_sym___clrcall] = ACTIONS(799), + [anon_sym___stdcall] = ACTIONS(799), + [anon_sym___fastcall] = ACTIONS(799), + [anon_sym___thiscall] = ACTIONS(799), + [anon_sym___vectorcall] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(799), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [108] = { - [sym_identifier] = ACTIONS(1226), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token2] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [aux_sym_preproc_else_token1] = ACTIONS(1226), - [aux_sym_preproc_elif_token1] = ACTIONS(1226), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___attribute] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym__Nonnull] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [anon_sym___asm] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - }, - [109] = { - [sym_identifier] = ACTIONS(1230), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token2] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [aux_sym_preproc_else_token1] = ACTIONS(1230), - [aux_sym_preproc_elif_token1] = ACTIONS(1230), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___attribute] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym__Nonnull] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [anon_sym___asm] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), - [sym_comment] = ACTIONS(3), - }, - [110] = { - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [aux_sym_preproc_else_token1] = ACTIONS(1234), - [aux_sym_preproc_elif_token1] = ACTIONS(1234), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___attribute] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym__Nonnull] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [anon_sym___asm] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - }, - [111] = { - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token2] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [aux_sym_preproc_else_token1] = ACTIONS(1238), - [aux_sym_preproc_elif_token1] = ACTIONS(1238), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___attribute] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym__Nonnull] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [anon_sym___asm] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - }, - [112] = { - [sym_identifier] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [aux_sym_preproc_else_token1] = ACTIONS(1242), - [aux_sym_preproc_elif_token1] = ACTIONS(1242), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___attribute] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym__Nonnull] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [anon_sym___asm] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - }, - [113] = { - [sym_identifier] = ACTIONS(1246), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token2] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [aux_sym_preproc_else_token1] = ACTIONS(1246), - [aux_sym_preproc_elif_token1] = ACTIONS(1246), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___attribute] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym__Nonnull] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [anon_sym___asm] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - }, - [114] = { - [sym_identifier] = ACTIONS(1250), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token2] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [aux_sym_preproc_else_token1] = ACTIONS(1250), - [aux_sym_preproc_elif_token1] = ACTIONS(1250), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___attribute] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym__Nonnull] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [anon_sym___asm] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - }, - [115] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1230), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___attribute] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym__Nonnull] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___except] = ACTIONS(1230), - [anon_sym___finally] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [anon_sym___asm] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), + [STATE(84)] = { + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [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(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [116] = { - [sym_identifier] = ACTIONS(1254), - [aux_sym_preproc_include_token1] = ACTIONS(1254), - [aux_sym_preproc_def_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token2] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), - [aux_sym_preproc_else_token1] = ACTIONS(1254), - [aux_sym_preproc_elif_token1] = ACTIONS(1254), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1254), - [sym_preproc_directive] = ACTIONS(1254), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym___attribute__] = ACTIONS(1254), - [anon_sym___attribute] = ACTIONS(1254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), - [anon_sym___declspec] = ACTIONS(1254), - [anon_sym___cdecl] = ACTIONS(1254), - [anon_sym___clrcall] = ACTIONS(1254), - [anon_sym___stdcall] = ACTIONS(1254), - [anon_sym___fastcall] = ACTIONS(1254), - [anon_sym___thiscall] = ACTIONS(1254), - [anon_sym___vectorcall] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1254), - [anon_sym_unsigned] = ACTIONS(1254), - [anon_sym_long] = ACTIONS(1254), - [anon_sym_short] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_auto] = ACTIONS(1254), - [anon_sym_register] = ACTIONS(1254), - [anon_sym_inline] = ACTIONS(1254), - [anon_sym___inline] = ACTIONS(1254), - [anon_sym___inline__] = ACTIONS(1254), - [anon_sym___forceinline] = ACTIONS(1254), - [anon_sym_thread_local] = ACTIONS(1254), - [anon_sym___thread] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_constexpr] = ACTIONS(1254), - [anon_sym_volatile] = ACTIONS(1254), - [anon_sym_restrict] = ACTIONS(1254), - [anon_sym___restrict__] = ACTIONS(1254), - [anon_sym__Atomic] = ACTIONS(1254), - [anon_sym__Noreturn] = ACTIONS(1254), - [anon_sym_noreturn] = ACTIONS(1254), - [anon_sym__Nonnull] = ACTIONS(1254), - [anon_sym_alignas] = ACTIONS(1254), - [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_case] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_goto] = ACTIONS(1254), - [anon_sym___try] = ACTIONS(1254), - [anon_sym___leave] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_sizeof] = ACTIONS(1254), - [anon_sym___alignof__] = ACTIONS(1254), - [anon_sym___alignof] = ACTIONS(1254), - [anon_sym__alignof] = ACTIONS(1254), - [anon_sym_alignof] = ACTIONS(1254), - [anon_sym__Alignof] = ACTIONS(1254), - [anon_sym_offsetof] = ACTIONS(1254), - [anon_sym__Generic] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1254), - [anon_sym___asm__] = ACTIONS(1254), - [anon_sym___asm] = ACTIONS(1254), - [sym_number_literal] = ACTIONS(1256), - [anon_sym_L_SQUOTE] = ACTIONS(1256), - [anon_sym_u_SQUOTE] = ACTIONS(1256), - [anon_sym_U_SQUOTE] = ACTIONS(1256), - [anon_sym_u8_SQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_L_DQUOTE] = ACTIONS(1256), - [anon_sym_u_DQUOTE] = ACTIONS(1256), - [anon_sym_U_DQUOTE] = ACTIONS(1256), - [anon_sym_u8_DQUOTE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_true] = ACTIONS(1254), - [sym_false] = ACTIONS(1254), - [anon_sym_NULL] = ACTIONS(1254), - [anon_sym_nullptr] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - }, - [117] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1218), - [aux_sym_preproc_include_token1] = ACTIONS(1218), - [aux_sym_preproc_def_token1] = ACTIONS(1218), - [anon_sym_COMMA] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_LPAREN2] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(1218), - [anon_sym___attribute] = ACTIONS(1218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), - [anon_sym___declspec] = ACTIONS(1218), - [anon_sym___cdecl] = ACTIONS(1218), - [anon_sym___clrcall] = ACTIONS(1218), - [anon_sym___stdcall] = ACTIONS(1218), - [anon_sym___fastcall] = ACTIONS(1218), - [anon_sym___thiscall] = ACTIONS(1218), - [anon_sym___vectorcall] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym___restrict__] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym__Noreturn] = ACTIONS(1218), - [anon_sym_noreturn] = ACTIONS(1218), - [anon_sym__Nonnull] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_goto] = ACTIONS(1218), - [anon_sym___try] = ACTIONS(1218), - [anon_sym___except] = ACTIONS(1218), - [anon_sym___finally] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1218), - [anon_sym___asm__] = ACTIONS(1218), - [anon_sym___asm] = ACTIONS(1218), - [sym_number_literal] = ACTIONS(1220), - [anon_sym_L_SQUOTE] = ACTIONS(1220), - [anon_sym_u_SQUOTE] = ACTIONS(1220), - [anon_sym_U_SQUOTE] = ACTIONS(1220), - [anon_sym_u8_SQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1218), - [sym_false] = ACTIONS(1218), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - }, - [118] = { - [sym_identifier] = ACTIONS(1258), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token2] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [aux_sym_preproc_else_token1] = ACTIONS(1258), - [aux_sym_preproc_elif_token1] = ACTIONS(1258), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___attribute] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym__Nonnull] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [anon_sym___asm] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - }, - [119] = { - [sym_identifier] = ACTIONS(1262), - [aux_sym_preproc_include_token1] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token2] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), - [aux_sym_preproc_else_token1] = ACTIONS(1262), - [aux_sym_preproc_elif_token1] = ACTIONS(1262), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1262), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1262), - [sym_preproc_directive] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym___extension__] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym___attribute__] = ACTIONS(1262), - [anon_sym___attribute] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), - [anon_sym___declspec] = ACTIONS(1262), - [anon_sym___cdecl] = ACTIONS(1262), - [anon_sym___clrcall] = ACTIONS(1262), - [anon_sym___stdcall] = ACTIONS(1262), - [anon_sym___fastcall] = ACTIONS(1262), - [anon_sym___thiscall] = ACTIONS(1262), - [anon_sym___vectorcall] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1262), - [anon_sym_unsigned] = ACTIONS(1262), - [anon_sym_long] = ACTIONS(1262), - [anon_sym_short] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_auto] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_inline] = ACTIONS(1262), - [anon_sym___inline] = ACTIONS(1262), - [anon_sym___inline__] = ACTIONS(1262), - [anon_sym___forceinline] = ACTIONS(1262), - [anon_sym_thread_local] = ACTIONS(1262), - [anon_sym___thread] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_constexpr] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1262), - [anon_sym_restrict] = ACTIONS(1262), - [anon_sym___restrict__] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1262), - [anon_sym__Noreturn] = ACTIONS(1262), - [anon_sym_noreturn] = ACTIONS(1262), - [anon_sym__Nonnull] = ACTIONS(1262), - [anon_sym_alignas] = ACTIONS(1262), - [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1262), - [anon_sym___try] = ACTIONS(1262), - [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1262), - [anon_sym___alignof__] = ACTIONS(1262), - [anon_sym___alignof] = ACTIONS(1262), - [anon_sym__alignof] = ACTIONS(1262), - [anon_sym_alignof] = ACTIONS(1262), - [anon_sym__Alignof] = ACTIONS(1262), - [anon_sym_offsetof] = ACTIONS(1262), - [anon_sym__Generic] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1262), - [anon_sym___asm__] = ACTIONS(1262), - [anon_sym___asm] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - }, - [120] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [aux_sym_preproc_else_token1] = ACTIONS(1268), - [aux_sym_preproc_elif_token1] = ACTIONS(1268), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym___attribute] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym__Nonnull] = ACTIONS(1268), - [anon_sym_alignas] = ACTIONS(1268), - [anon_sym__Alignas] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [anon_sym___asm] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [121] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [aux_sym_preproc_else_token1] = ACTIONS(1272), - [aux_sym_preproc_elif_token1] = ACTIONS(1272), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym___attribute] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym__Nonnull] = ACTIONS(1272), - [anon_sym_alignas] = ACTIONS(1272), - [anon_sym__Alignas] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym___try] = ACTIONS(1272), - [anon_sym___leave] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [anon_sym___asm] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [122] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [aux_sym_preproc_else_token1] = ACTIONS(1276), - [aux_sym_preproc_elif_token1] = ACTIONS(1276), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym___attribute] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym__Nonnull] = ACTIONS(1276), - [anon_sym_alignas] = ACTIONS(1276), - [anon_sym__Alignas] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym___try] = ACTIONS(1276), - [anon_sym___leave] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [anon_sym___asm] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [123] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [aux_sym_preproc_else_token1] = ACTIONS(1280), - [aux_sym_preproc_elif_token1] = ACTIONS(1280), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym___attribute] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym__Nonnull] = ACTIONS(1280), - [anon_sym_alignas] = ACTIONS(1280), - [anon_sym__Alignas] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [anon_sym___asm] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [124] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [aux_sym_preproc_else_token1] = ACTIONS(1284), - [aux_sym_preproc_elif_token1] = ACTIONS(1284), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym___attribute] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym__Nonnull] = ACTIONS(1284), - [anon_sym_alignas] = ACTIONS(1284), - [anon_sym__Alignas] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [anon_sym___asm] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [125] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [aux_sym_preproc_else_token1] = ACTIONS(1288), - [aux_sym_preproc_elif_token1] = ACTIONS(1288), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym___attribute] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym__Nonnull] = ACTIONS(1288), - [anon_sym_alignas] = ACTIONS(1288), - [anon_sym__Alignas] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym___try] = ACTIONS(1288), - [anon_sym___leave] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [anon_sym___asm] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - }, - [126] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym___attribute] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym__Nonnull] = ACTIONS(1292), - [anon_sym_alignas] = ACTIONS(1292), - [anon_sym__Alignas] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [anon_sym___asm] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [127] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [aux_sym_preproc_else_token1] = ACTIONS(1296), - [aux_sym_preproc_elif_token1] = ACTIONS(1296), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym___attribute] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym__Nonnull] = ACTIONS(1296), - [anon_sym_alignas] = ACTIONS(1296), - [anon_sym__Alignas] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym___try] = ACTIONS(1296), - [anon_sym___leave] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [anon_sym___asm] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [128] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [aux_sym_preproc_else_token1] = ACTIONS(1300), - [aux_sym_preproc_elif_token1] = ACTIONS(1300), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym___attribute] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym__Nonnull] = ACTIONS(1300), - [anon_sym_alignas] = ACTIONS(1300), - [anon_sym__Alignas] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym___try] = ACTIONS(1300), - [anon_sym___leave] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [anon_sym___asm] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [129] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [aux_sym_preproc_else_token1] = ACTIONS(1304), - [aux_sym_preproc_elif_token1] = ACTIONS(1304), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym___attribute] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym__Nonnull] = ACTIONS(1304), - [anon_sym_alignas] = ACTIONS(1304), - [anon_sym__Alignas] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [anon_sym___asm] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [130] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [aux_sym_preproc_else_token1] = ACTIONS(1308), - [aux_sym_preproc_elif_token1] = ACTIONS(1308), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym___attribute] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym__Nonnull] = ACTIONS(1308), - [anon_sym_alignas] = ACTIONS(1308), - [anon_sym__Alignas] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [anon_sym___asm] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [STATE(85)] = { + [sym_declaration] = STATE(294), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(306), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(294), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(386), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [131] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [aux_sym_preproc_else_token1] = ACTIONS(1312), - [aux_sym_preproc_elif_token1] = ACTIONS(1312), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym___attribute] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym__Nonnull] = ACTIONS(1312), - [anon_sym_alignas] = ACTIONS(1312), - [anon_sym__Alignas] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [anon_sym___asm] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [132] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [aux_sym_preproc_else_token1] = ACTIONS(1316), - [aux_sym_preproc_elif_token1] = ACTIONS(1316), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym___attribute] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym__Nonnull] = ACTIONS(1316), - [anon_sym_alignas] = ACTIONS(1316), - [anon_sym__Alignas] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [anon_sym___asm] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [133] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [aux_sym_preproc_else_token1] = ACTIONS(1320), - [aux_sym_preproc_elif_token1] = ACTIONS(1320), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym___attribute] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym__Nonnull] = ACTIONS(1320), - [anon_sym_alignas] = ACTIONS(1320), - [anon_sym__Alignas] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [anon_sym___asm] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [STATE(86)] = { + [sym_declaration] = STATE(234), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(221), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(234), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(448), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [134] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [aux_sym_preproc_else_token1] = ACTIONS(1324), - [aux_sym_preproc_elif_token1] = ACTIONS(1324), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym___attribute] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym__Nonnull] = ACTIONS(1324), - [anon_sym_alignas] = ACTIONS(1324), - [anon_sym__Alignas] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [anon_sym___asm] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [135] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [aux_sym_preproc_else_token1] = ACTIONS(1328), - [aux_sym_preproc_elif_token1] = ACTIONS(1328), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym___attribute] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym__Nonnull] = ACTIONS(1328), - [anon_sym_alignas] = ACTIONS(1328), - [anon_sym__Alignas] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym___try] = ACTIONS(1328), - [anon_sym___leave] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [anon_sym___asm] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), - [sym_comment] = ACTIONS(3), - }, - [136] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [aux_sym_preproc_else_token1] = ACTIONS(1332), - [aux_sym_preproc_elif_token1] = ACTIONS(1332), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym___attribute] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym__Nonnull] = ACTIONS(1332), - [anon_sym_alignas] = ACTIONS(1332), - [anon_sym__Alignas] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym___try] = ACTIONS(1332), - [anon_sym___leave] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [anon_sym___asm] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, - [137] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym___attribute] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym__Nonnull] = ACTIONS(1336), - [anon_sym_alignas] = ACTIONS(1336), - [anon_sym__Alignas] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [anon_sym___asm] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [138] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [aux_sym_preproc_else_token1] = ACTIONS(1340), - [aux_sym_preproc_elif_token1] = ACTIONS(1340), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym___extension__] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym___attribute] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym___inline] = ACTIONS(1340), - [anon_sym___inline__] = ACTIONS(1340), - [anon_sym___forceinline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym__Nonnull] = ACTIONS(1340), - [anon_sym_alignas] = ACTIONS(1340), - [anon_sym__Alignas] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym___try] = ACTIONS(1340), - [anon_sym___leave] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym___alignof__] = ACTIONS(1340), - [anon_sym___alignof] = ACTIONS(1340), - [anon_sym__alignof] = ACTIONS(1340), - [anon_sym_alignof] = ACTIONS(1340), - [anon_sym__Alignof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [anon_sym___asm] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [STATE(87)] = { + [sym_declaration] = STATE(267), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(267), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [139] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [aux_sym_preproc_else_token1] = ACTIONS(1344), - [aux_sym_preproc_elif_token1] = ACTIONS(1344), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym___attribute] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [anon_sym__Nonnull] = ACTIONS(1344), - [anon_sym_alignas] = ACTIONS(1344), - [anon_sym__Alignas] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym___try] = ACTIONS(1344), - [anon_sym___leave] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [anon_sym___asm] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [140] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token2] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [aux_sym_preproc_else_token1] = ACTIONS(1348), - [aux_sym_preproc_elif_token1] = ACTIONS(1348), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1348), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym___attribute] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym___inline] = ACTIONS(1348), - [anon_sym___inline__] = ACTIONS(1348), - [anon_sym___forceinline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym__Nonnull] = ACTIONS(1348), - [anon_sym_alignas] = ACTIONS(1348), - [anon_sym__Alignas] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym___try] = ACTIONS(1348), - [anon_sym___leave] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym___alignof__] = ACTIONS(1348), - [anon_sym___alignof] = ACTIONS(1348), - [anon_sym__alignof] = ACTIONS(1348), - [anon_sym_alignof] = ACTIONS(1348), - [anon_sym__Alignof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [anon_sym___asm] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), + [STATE(88)] = { + [sym_declaration] = STATE(234), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1449), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(221), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(234), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1003), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [141] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [aux_sym_preproc_else_token1] = ACTIONS(1352), - [aux_sym_preproc_elif_token1] = ACTIONS(1352), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym___attribute] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym__Nonnull] = ACTIONS(1352), - [anon_sym_alignas] = ACTIONS(1352), - [anon_sym__Alignas] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym___try] = ACTIONS(1352), - [anon_sym___leave] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [anon_sym___asm] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [STATE(89)] = { + [sym_declaration] = STATE(159), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(159), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(945), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [142] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [aux_sym_preproc_else_token1] = ACTIONS(1356), - [aux_sym_preproc_elif_token1] = ACTIONS(1356), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym___extension__] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym___attribute] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym___inline] = ACTIONS(1356), - [anon_sym___inline__] = ACTIONS(1356), - [anon_sym___forceinline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [anon_sym__Nonnull] = ACTIONS(1356), - [anon_sym_alignas] = ACTIONS(1356), - [anon_sym__Alignas] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym___try] = ACTIONS(1356), - [anon_sym___leave] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym___alignof__] = ACTIONS(1356), - [anon_sym___alignof] = ACTIONS(1356), - [anon_sym__alignof] = ACTIONS(1356), - [anon_sym_alignof] = ACTIONS(1356), - [anon_sym__Alignof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [anon_sym___asm] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [STATE(90)] = { + [sym_declaration] = STATE(159), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1447), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(159), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(797), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(805), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [143] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [aux_sym_preproc_else_token1] = ACTIONS(1360), - [aux_sym_preproc_elif_token1] = ACTIONS(1360), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym___extension__] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym___attribute] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = 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(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym__Nonnull] = ACTIONS(1360), - [anon_sym_alignas] = ACTIONS(1360), - [anon_sym__Alignas] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym___try] = ACTIONS(1360), - [anon_sym___leave] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym___alignof__] = ACTIONS(1360), - [anon_sym___alignof] = ACTIONS(1360), - [anon_sym__alignof] = ACTIONS(1360), - [anon_sym_alignof] = ACTIONS(1360), - [anon_sym__Alignof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [anon_sym___asm] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [STATE(91)] = { + [sym_declaration] = STATE(294), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(294), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [144] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [aux_sym_preproc_else_token1] = ACTIONS(1364), - [aux_sym_preproc_elif_token1] = ACTIONS(1364), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym___extension__] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym___attribute] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym___inline] = ACTIONS(1364), - [anon_sym___inline__] = ACTIONS(1364), - [anon_sym___forceinline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym___thread] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym__Nonnull] = ACTIONS(1364), - [anon_sym_alignas] = ACTIONS(1364), - [anon_sym__Alignas] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym___try] = ACTIONS(1364), - [anon_sym___leave] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym___alignof__] = ACTIONS(1364), - [anon_sym___alignof] = ACTIONS(1364), - [anon_sym__alignof] = ACTIONS(1364), - [anon_sym_alignof] = ACTIONS(1364), - [anon_sym__Alignof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [anon_sym___asm] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), + [STATE(92)] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [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(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym___extension__] = ACTIONS(1071), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(841), + [anon_sym___attribute__] = ACTIONS(844), + [anon_sym___attribute] = ACTIONS(844), + [anon_sym_const] = ACTIONS(847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(850), + [anon_sym___declspec] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_signed] = ACTIONS(859), + [anon_sym_unsigned] = ACTIONS(859), + [anon_sym_long] = ACTIONS(859), + [anon_sym_short] = ACTIONS(859), + [anon_sym_static] = ACTIONS(841), + [anon_sym_auto] = ACTIONS(841), + [anon_sym_register] = ACTIONS(841), + [anon_sym_inline] = ACTIONS(841), + [anon_sym___inline] = ACTIONS(841), + [anon_sym___inline__] = ACTIONS(841), + [anon_sym___forceinline] = ACTIONS(841), + [anon_sym_thread_local] = ACTIONS(841), + [anon_sym___thread] = ACTIONS(841), + [anon_sym_constexpr] = ACTIONS(847), + [anon_sym_volatile] = ACTIONS(847), + [anon_sym_restrict] = ACTIONS(847), + [anon_sym___restrict__] = ACTIONS(847), + [anon_sym__Atomic] = ACTIONS(847), + [anon_sym__Noreturn] = ACTIONS(847), + [anon_sym_noreturn] = ACTIONS(847), + [anon_sym__Nonnull] = ACTIONS(847), + [anon_sym_alignas] = ACTIONS(862), + [anon_sym__Alignas] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(868), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_union] = ACTIONS(874), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_goto] = ACTIONS(1236), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1168), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(913), + [anon_sym___alignof__] = ACTIONS(916), + [anon_sym___alignof] = ACTIONS(916), + [anon_sym__alignof] = ACTIONS(916), + [anon_sym_alignof] = ACTIONS(916), + [anon_sym__Alignof] = ACTIONS(916), + [anon_sym_offsetof] = ACTIONS(919), + [anon_sym__Generic] = ACTIONS(922), + [anon_sym_asm] = ACTIONS(925), + [anon_sym___asm__] = ACTIONS(925), + [anon_sym___asm] = ACTIONS(925), + [sym_number_literal] = ACTIONS(928), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_u_SQUOTE] = ACTIONS(931), + [anon_sym_U_SQUOTE] = ACTIONS(931), + [anon_sym_u8_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_NULL] = ACTIONS(940), + [anon_sym_nullptr] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [145] = { - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token2] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [aux_sym_preproc_else_token1] = ACTIONS(1368), - [aux_sym_preproc_elif_token1] = ACTIONS(1368), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym___extension__] = ACTIONS(1368), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym___attribute] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym___inline] = ACTIONS(1368), - [anon_sym___inline__] = ACTIONS(1368), - [anon_sym___forceinline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym__Nonnull] = ACTIONS(1368), - [anon_sym_alignas] = ACTIONS(1368), - [anon_sym__Alignas] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym___try] = ACTIONS(1368), - [anon_sym___leave] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym___alignof__] = ACTIONS(1368), - [anon_sym___alignof] = ACTIONS(1368), - [anon_sym__alignof] = ACTIONS(1368), - [anon_sym_alignof] = ACTIONS(1368), - [anon_sym__Alignof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [anon_sym___asm] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [STATE(93)] = { + [sym_declaration] = STATE(294), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(306), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(294), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(987), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [146] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token2] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [aux_sym_preproc_else_token1] = ACTIONS(1372), - [aux_sym_preproc_elif_token1] = ACTIONS(1372), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym___extension__] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym___attribute] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym___inline] = ACTIONS(1372), - [anon_sym___inline__] = ACTIONS(1372), - [anon_sym___forceinline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym__Nonnull] = ACTIONS(1372), - [anon_sym_alignas] = ACTIONS(1372), - [anon_sym__Alignas] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym___try] = ACTIONS(1372), - [anon_sym___leave] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym___alignof__] = ACTIONS(1372), - [anon_sym___alignof] = ACTIONS(1372), - [anon_sym__alignof] = ACTIONS(1372), - [anon_sym_alignof] = ACTIONS(1372), - [anon_sym__Alignof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [anon_sym___asm] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [STATE(94)] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [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(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(943), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [147] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token2] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [aux_sym_preproc_else_token1] = ACTIONS(1376), - [aux_sym_preproc_elif_token1] = ACTIONS(1376), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym___extension__] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym___attribute] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym___inline] = ACTIONS(1376), - [anon_sym___inline__] = ACTIONS(1376), - [anon_sym___forceinline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym__Nonnull] = ACTIONS(1376), - [anon_sym_alignas] = ACTIONS(1376), - [anon_sym__Alignas] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym___try] = ACTIONS(1376), - [anon_sym___leave] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym___alignof__] = ACTIONS(1376), - [anon_sym___alignof] = ACTIONS(1376), - [anon_sym__alignof] = ACTIONS(1376), - [anon_sym_alignof] = ACTIONS(1376), - [anon_sym__Alignof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [anon_sym___asm] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [STATE(95)] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [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(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(813), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [148] = { - [sym_else_clause] = STATE(199), - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token2] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym___extension__] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym___attribute] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), - [anon_sym___declspec] = ACTIONS(1128), - [anon_sym___cdecl] = ACTIONS(1128), - [anon_sym___clrcall] = ACTIONS(1128), - [anon_sym___stdcall] = ACTIONS(1128), - [anon_sym___fastcall] = ACTIONS(1128), - [anon_sym___thiscall] = ACTIONS(1128), - [anon_sym___vectorcall] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___inline] = ACTIONS(1128), - [anon_sym___inline__] = ACTIONS(1128), - [anon_sym___forceinline] = ACTIONS(1128), - [anon_sym_thread_local] = ACTIONS(1128), - [anon_sym___thread] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym___restrict__] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym__Noreturn] = ACTIONS(1128), - [anon_sym_noreturn] = ACTIONS(1128), - [anon_sym__Nonnull] = ACTIONS(1128), - [anon_sym_alignas] = ACTIONS(1128), - [anon_sym__Alignas] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1128), - [anon_sym___leave] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym___alignof__] = ACTIONS(1128), - [anon_sym___alignof] = ACTIONS(1128), - [anon_sym__alignof] = ACTIONS(1128), - [anon_sym_alignof] = ACTIONS(1128), - [anon_sym__Alignof] = ACTIONS(1128), - [anon_sym_offsetof] = ACTIONS(1128), - [anon_sym__Generic] = ACTIONS(1128), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym___asm__] = ACTIONS(1128), - [anon_sym___asm] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym_u_SQUOTE] = ACTIONS(1130), - [anon_sym_U_SQUOTE] = ACTIONS(1130), - [anon_sym_u8_SQUOTE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_u_DQUOTE] = ACTIONS(1130), - [anon_sym_U_DQUOTE] = ACTIONS(1130), - [anon_sym_u8_DQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_NULL] = ACTIONS(1128), - [anon_sym_nullptr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - }, - [149] = { - [sym_else_clause] = STATE(243), - [ts_builtin_sym_end] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym___extension__] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym___attribute] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), - [anon_sym___declspec] = ACTIONS(1128), - [anon_sym___cdecl] = ACTIONS(1128), - [anon_sym___clrcall] = ACTIONS(1128), - [anon_sym___stdcall] = ACTIONS(1128), - [anon_sym___fastcall] = ACTIONS(1128), - [anon_sym___thiscall] = ACTIONS(1128), - [anon_sym___vectorcall] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___inline] = ACTIONS(1128), - [anon_sym___inline__] = ACTIONS(1128), - [anon_sym___forceinline] = ACTIONS(1128), - [anon_sym_thread_local] = ACTIONS(1128), - [anon_sym___thread] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym___restrict__] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym__Noreturn] = ACTIONS(1128), - [anon_sym_noreturn] = ACTIONS(1128), - [anon_sym__Nonnull] = ACTIONS(1128), - [anon_sym_alignas] = ACTIONS(1128), - [anon_sym__Alignas] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1128), - [anon_sym___leave] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym___alignof__] = ACTIONS(1128), - [anon_sym___alignof] = ACTIONS(1128), - [anon_sym__alignof] = ACTIONS(1128), - [anon_sym_alignof] = ACTIONS(1128), - [anon_sym__Alignof] = ACTIONS(1128), - [anon_sym_offsetof] = ACTIONS(1128), - [anon_sym__Generic] = ACTIONS(1128), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym___asm__] = ACTIONS(1128), - [anon_sym___asm] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym_u_SQUOTE] = ACTIONS(1130), - [anon_sym_U_SQUOTE] = ACTIONS(1130), - [anon_sym_u8_SQUOTE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_u_DQUOTE] = ACTIONS(1130), - [anon_sym_U_DQUOTE] = ACTIONS(1130), - [anon_sym_u8_DQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_NULL] = ACTIONS(1128), - [anon_sym_nullptr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - }, - [150] = { - [sym_else_clause] = STATE(223), - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym___extension__] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym___attribute] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), - [anon_sym___declspec] = ACTIONS(1128), - [anon_sym___cdecl] = ACTIONS(1128), - [anon_sym___clrcall] = ACTIONS(1128), - [anon_sym___stdcall] = ACTIONS(1128), - [anon_sym___fastcall] = ACTIONS(1128), - [anon_sym___thiscall] = ACTIONS(1128), - [anon_sym___vectorcall] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___inline] = ACTIONS(1128), - [anon_sym___inline__] = ACTIONS(1128), - [anon_sym___forceinline] = ACTIONS(1128), - [anon_sym_thread_local] = ACTIONS(1128), - [anon_sym___thread] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym___restrict__] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym__Noreturn] = ACTIONS(1128), - [anon_sym_noreturn] = ACTIONS(1128), - [anon_sym__Nonnull] = ACTIONS(1128), - [anon_sym_alignas] = ACTIONS(1128), - [anon_sym__Alignas] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1128), - [anon_sym___leave] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym___alignof__] = ACTIONS(1128), - [anon_sym___alignof] = ACTIONS(1128), - [anon_sym__alignof] = ACTIONS(1128), - [anon_sym_alignof] = ACTIONS(1128), - [anon_sym__Alignof] = ACTIONS(1128), - [anon_sym_offsetof] = ACTIONS(1128), - [anon_sym__Generic] = ACTIONS(1128), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym___asm__] = ACTIONS(1128), - [anon_sym___asm] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym_u_SQUOTE] = ACTIONS(1130), - [anon_sym_U_SQUOTE] = ACTIONS(1130), - [anon_sym_u8_SQUOTE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_u_DQUOTE] = ACTIONS(1130), - [anon_sym_U_DQUOTE] = ACTIONS(1130), - [anon_sym_u8_DQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_NULL] = ACTIONS(1128), - [anon_sym_nullptr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(1172), - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [154] = { - [sym_identifier] = ACTIONS(1206), - [aux_sym_preproc_include_token1] = ACTIONS(1206), - [aux_sym_preproc_def_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), - [sym_preproc_directive] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym___extension__] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym___attribute__] = ACTIONS(1206), - [anon_sym___attribute] = ACTIONS(1206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), - [anon_sym___declspec] = ACTIONS(1206), - [anon_sym___cdecl] = ACTIONS(1206), - [anon_sym___clrcall] = ACTIONS(1206), - [anon_sym___stdcall] = ACTIONS(1206), - [anon_sym___fastcall] = ACTIONS(1206), - [anon_sym___thiscall] = ACTIONS(1206), - [anon_sym___vectorcall] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1206), - [anon_sym_unsigned] = ACTIONS(1206), - [anon_sym_long] = ACTIONS(1206), - [anon_sym_short] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_auto] = ACTIONS(1206), - [anon_sym_register] = ACTIONS(1206), - [anon_sym_inline] = ACTIONS(1206), - [anon_sym___inline] = ACTIONS(1206), - [anon_sym___inline__] = ACTIONS(1206), - [anon_sym___forceinline] = ACTIONS(1206), - [anon_sym_thread_local] = ACTIONS(1206), - [anon_sym___thread] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_constexpr] = ACTIONS(1206), - [anon_sym_volatile] = ACTIONS(1206), - [anon_sym_restrict] = ACTIONS(1206), - [anon_sym___restrict__] = ACTIONS(1206), - [anon_sym__Atomic] = ACTIONS(1206), - [anon_sym__Noreturn] = ACTIONS(1206), - [anon_sym_noreturn] = ACTIONS(1206), - [anon_sym__Nonnull] = ACTIONS(1206), - [anon_sym_alignas] = ACTIONS(1206), - [anon_sym__Alignas] = ACTIONS(1206), - [sym_primitive_type] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_union] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_switch] = ACTIONS(1206), - [anon_sym_case] = ACTIONS(1206), - [anon_sym_default] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_do] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_goto] = ACTIONS(1206), - [anon_sym___try] = ACTIONS(1206), - [anon_sym___leave] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_sizeof] = ACTIONS(1206), - [anon_sym___alignof__] = ACTIONS(1206), - [anon_sym___alignof] = ACTIONS(1206), - [anon_sym__alignof] = ACTIONS(1206), - [anon_sym_alignof] = ACTIONS(1206), - [anon_sym__Alignof] = ACTIONS(1206), - [anon_sym_offsetof] = ACTIONS(1206), - [anon_sym__Generic] = ACTIONS(1206), - [anon_sym_asm] = ACTIONS(1206), - [anon_sym___asm__] = ACTIONS(1206), - [anon_sym___asm] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(1208), - [anon_sym_L_SQUOTE] = ACTIONS(1208), - [anon_sym_u_SQUOTE] = ACTIONS(1208), - [anon_sym_U_SQUOTE] = ACTIONS(1208), - [anon_sym_u8_SQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_L_DQUOTE] = ACTIONS(1208), - [anon_sym_u_DQUOTE] = ACTIONS(1208), - [anon_sym_U_DQUOTE] = ACTIONS(1208), - [anon_sym_u8_DQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [anon_sym_NULL] = ACTIONS(1206), - [anon_sym_nullptr] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - }, - [155] = { - [ts_builtin_sym_end] = ACTIONS(1212), - [sym_identifier] = ACTIONS(1210), - [aux_sym_preproc_include_token1] = ACTIONS(1210), - [aux_sym_preproc_def_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), - [sym_preproc_directive] = ACTIONS(1210), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym___extension__] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym___attribute__] = ACTIONS(1210), - [anon_sym___attribute] = ACTIONS(1210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), - [anon_sym___declspec] = ACTIONS(1210), - [anon_sym___cdecl] = ACTIONS(1210), - [anon_sym___clrcall] = ACTIONS(1210), - [anon_sym___stdcall] = ACTIONS(1210), - [anon_sym___fastcall] = ACTIONS(1210), - [anon_sym___thiscall] = ACTIONS(1210), - [anon_sym___vectorcall] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1210), - [anon_sym_unsigned] = ACTIONS(1210), - [anon_sym_long] = ACTIONS(1210), - [anon_sym_short] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_auto] = ACTIONS(1210), - [anon_sym_register] = ACTIONS(1210), - [anon_sym_inline] = ACTIONS(1210), - [anon_sym___inline] = ACTIONS(1210), - [anon_sym___inline__] = ACTIONS(1210), - [anon_sym___forceinline] = ACTIONS(1210), - [anon_sym_thread_local] = ACTIONS(1210), - [anon_sym___thread] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_constexpr] = ACTIONS(1210), - [anon_sym_volatile] = ACTIONS(1210), - [anon_sym_restrict] = ACTIONS(1210), - [anon_sym___restrict__] = ACTIONS(1210), - [anon_sym__Atomic] = ACTIONS(1210), - [anon_sym__Noreturn] = ACTIONS(1210), - [anon_sym_noreturn] = ACTIONS(1210), - [anon_sym__Nonnull] = ACTIONS(1210), - [anon_sym_alignas] = ACTIONS(1210), - [anon_sym__Alignas] = ACTIONS(1210), - [sym_primitive_type] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1210), - [anon_sym___try] = ACTIONS(1210), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym___alignof__] = ACTIONS(1210), - [anon_sym___alignof] = ACTIONS(1210), - [anon_sym__alignof] = ACTIONS(1210), - [anon_sym_alignof] = ACTIONS(1210), - [anon_sym__Alignof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1210), - [anon_sym__Generic] = ACTIONS(1210), - [anon_sym_asm] = ACTIONS(1210), - [anon_sym___asm__] = ACTIONS(1210), - [anon_sym___asm] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_L_SQUOTE] = ACTIONS(1212), - [anon_sym_u_SQUOTE] = ACTIONS(1212), - [anon_sym_U_SQUOTE] = ACTIONS(1212), - [anon_sym_u8_SQUOTE] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_L_DQUOTE] = ACTIONS(1212), - [anon_sym_u_DQUOTE] = ACTIONS(1212), - [anon_sym_U_DQUOTE] = ACTIONS(1212), - [anon_sym_u8_DQUOTE] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_true] = ACTIONS(1210), - [sym_false] = ACTIONS(1210), - [anon_sym_NULL] = ACTIONS(1210), - [anon_sym_nullptr] = ACTIONS(1210), - [sym_comment] = ACTIONS(3), - }, - [156] = { - [sym_identifier] = ACTIONS(1214), - [aux_sym_preproc_include_token1] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [anon_sym___attribute] = ACTIONS(1214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), - [anon_sym___declspec] = ACTIONS(1214), - [anon_sym___cdecl] = ACTIONS(1214), - [anon_sym___clrcall] = ACTIONS(1214), - [anon_sym___stdcall] = ACTIONS(1214), - [anon_sym___fastcall] = ACTIONS(1214), - [anon_sym___thiscall] = ACTIONS(1214), - [anon_sym___vectorcall] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___inline] = ACTIONS(1214), - [anon_sym___inline__] = ACTIONS(1214), - [anon_sym___forceinline] = ACTIONS(1214), - [anon_sym_thread_local] = ACTIONS(1214), - [anon_sym___thread] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_constexpr] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym___restrict__] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym__Noreturn] = ACTIONS(1214), - [anon_sym_noreturn] = ACTIONS(1214), - [anon_sym__Nonnull] = ACTIONS(1214), - [anon_sym_alignas] = ACTIONS(1214), - [anon_sym__Alignas] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym___try] = ACTIONS(1214), - [anon_sym___leave] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_sizeof] = ACTIONS(1214), - [anon_sym___alignof__] = ACTIONS(1214), - [anon_sym___alignof] = ACTIONS(1214), - [anon_sym__alignof] = ACTIONS(1214), - [anon_sym_alignof] = ACTIONS(1214), - [anon_sym__Alignof] = ACTIONS(1214), - [anon_sym_offsetof] = ACTIONS(1214), - [anon_sym__Generic] = ACTIONS(1214), - [anon_sym_asm] = ACTIONS(1214), - [anon_sym___asm__] = ACTIONS(1214), - [anon_sym___asm] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1216), - [anon_sym_L_SQUOTE] = ACTIONS(1216), - [anon_sym_u_SQUOTE] = ACTIONS(1216), - [anon_sym_U_SQUOTE] = ACTIONS(1216), - [anon_sym_u8_SQUOTE] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_L_DQUOTE] = ACTIONS(1216), - [anon_sym_u_DQUOTE] = ACTIONS(1216), - [anon_sym_U_DQUOTE] = ACTIONS(1216), - [anon_sym_u8_DQUOTE] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [anon_sym_NULL] = ACTIONS(1214), - [anon_sym_nullptr] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - }, - [157] = { - [sym_identifier] = ACTIONS(1230), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___attribute] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym__Nonnull] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [anon_sym___asm] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), - [sym_comment] = ACTIONS(3), - }, - [158] = { - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym___extension__] = ACTIONS(1190), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym___attribute] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym___inline] = ACTIONS(1190), - [anon_sym___inline__] = ACTIONS(1190), - [anon_sym___forceinline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym___thread] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym__Nonnull] = ACTIONS(1190), - [anon_sym_alignas] = ACTIONS(1190), - [anon_sym__Alignas] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym___alignof__] = ACTIONS(1190), - [anon_sym___alignof] = ACTIONS(1190), - [anon_sym__alignof] = ACTIONS(1190), - [anon_sym_alignof] = ACTIONS(1190), - [anon_sym__Alignof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [anon_sym___asm] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___attribute] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym__Nonnull] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [anon_sym___asm] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_identifier] = ACTIONS(1194), - [aux_sym_preproc_include_token1] = ACTIONS(1194), - [aux_sym_preproc_def_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), - [sym_preproc_directive] = ACTIONS(1194), - [anon_sym_LPAREN2] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym___extension__] = ACTIONS(1194), - [anon_sym_typedef] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym___attribute__] = ACTIONS(1194), - [anon_sym___attribute] = ACTIONS(1194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), - [anon_sym___declspec] = ACTIONS(1194), - [anon_sym___cdecl] = ACTIONS(1194), - [anon_sym___clrcall] = ACTIONS(1194), - [anon_sym___stdcall] = ACTIONS(1194), - [anon_sym___fastcall] = ACTIONS(1194), - [anon_sym___thiscall] = ACTIONS(1194), - [anon_sym___vectorcall] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1194), - [anon_sym_unsigned] = ACTIONS(1194), - [anon_sym_long] = ACTIONS(1194), - [anon_sym_short] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_auto] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_inline] = ACTIONS(1194), - [anon_sym___inline] = ACTIONS(1194), - [anon_sym___inline__] = ACTIONS(1194), - [anon_sym___forceinline] = ACTIONS(1194), - [anon_sym_thread_local] = ACTIONS(1194), - [anon_sym___thread] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_constexpr] = ACTIONS(1194), - [anon_sym_volatile] = ACTIONS(1194), - [anon_sym_restrict] = ACTIONS(1194), - [anon_sym___restrict__] = ACTIONS(1194), - [anon_sym__Atomic] = ACTIONS(1194), - [anon_sym__Noreturn] = ACTIONS(1194), - [anon_sym_noreturn] = ACTIONS(1194), - [anon_sym__Nonnull] = ACTIONS(1194), - [anon_sym_alignas] = ACTIONS(1194), - [anon_sym__Alignas] = ACTIONS(1194), - [sym_primitive_type] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_case] = ACTIONS(1194), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_goto] = ACTIONS(1194), - [anon_sym___try] = ACTIONS(1194), - [anon_sym___leave] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_sizeof] = ACTIONS(1194), - [anon_sym___alignof__] = ACTIONS(1194), - [anon_sym___alignof] = ACTIONS(1194), - [anon_sym__alignof] = ACTIONS(1194), - [anon_sym_alignof] = ACTIONS(1194), - [anon_sym__Alignof] = ACTIONS(1194), - [anon_sym_offsetof] = ACTIONS(1194), - [anon_sym__Generic] = ACTIONS(1194), - [anon_sym_asm] = ACTIONS(1194), - [anon_sym___asm__] = ACTIONS(1194), - [anon_sym___asm] = ACTIONS(1194), - [sym_number_literal] = ACTIONS(1196), - [anon_sym_L_SQUOTE] = ACTIONS(1196), - [anon_sym_u_SQUOTE] = ACTIONS(1196), - [anon_sym_U_SQUOTE] = ACTIONS(1196), - [anon_sym_u8_SQUOTE] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_L_DQUOTE] = ACTIONS(1196), - [anon_sym_u_DQUOTE] = ACTIONS(1196), - [anon_sym_U_DQUOTE] = ACTIONS(1196), - [anon_sym_u8_DQUOTE] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_true] = ACTIONS(1194), - [sym_false] = ACTIONS(1194), - [anon_sym_NULL] = ACTIONS(1194), - [anon_sym_nullptr] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___attribute] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym__Nonnull] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [anon_sym___asm] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1198), - [aux_sym_preproc_include_token1] = ACTIONS(1198), - [aux_sym_preproc_def_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), - [sym_preproc_directive] = ACTIONS(1198), - [anon_sym_LPAREN2] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym___extension__] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym___attribute__] = ACTIONS(1198), - [anon_sym___attribute] = ACTIONS(1198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), - [anon_sym___declspec] = ACTIONS(1198), - [anon_sym___cdecl] = ACTIONS(1198), - [anon_sym___clrcall] = ACTIONS(1198), - [anon_sym___stdcall] = ACTIONS(1198), - [anon_sym___fastcall] = ACTIONS(1198), - [anon_sym___thiscall] = ACTIONS(1198), - [anon_sym___vectorcall] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_auto] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_inline] = ACTIONS(1198), - [anon_sym___inline] = ACTIONS(1198), - [anon_sym___inline__] = ACTIONS(1198), - [anon_sym___forceinline] = ACTIONS(1198), - [anon_sym_thread_local] = ACTIONS(1198), - [anon_sym___thread] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_constexpr] = ACTIONS(1198), - [anon_sym_volatile] = ACTIONS(1198), - [anon_sym_restrict] = ACTIONS(1198), - [anon_sym___restrict__] = ACTIONS(1198), - [anon_sym__Atomic] = ACTIONS(1198), - [anon_sym__Noreturn] = ACTIONS(1198), - [anon_sym_noreturn] = ACTIONS(1198), - [anon_sym__Nonnull] = ACTIONS(1198), - [anon_sym_alignas] = ACTIONS(1198), - [anon_sym__Alignas] = ACTIONS(1198), - [sym_primitive_type] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_switch] = ACTIONS(1198), - [anon_sym_case] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_goto] = ACTIONS(1198), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_sizeof] = ACTIONS(1198), - [anon_sym___alignof__] = ACTIONS(1198), - [anon_sym___alignof] = ACTIONS(1198), - [anon_sym__alignof] = ACTIONS(1198), - [anon_sym_alignof] = ACTIONS(1198), - [anon_sym__Alignof] = ACTIONS(1198), - [anon_sym_offsetof] = ACTIONS(1198), - [anon_sym__Generic] = ACTIONS(1198), - [anon_sym_asm] = ACTIONS(1198), - [anon_sym___asm__] = ACTIONS(1198), - [anon_sym___asm] = ACTIONS(1198), - [sym_number_literal] = ACTIONS(1200), - [anon_sym_L_SQUOTE] = ACTIONS(1200), - [anon_sym_u_SQUOTE] = ACTIONS(1200), - [anon_sym_U_SQUOTE] = ACTIONS(1200), - [anon_sym_u8_SQUOTE] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_L_DQUOTE] = ACTIONS(1200), - [anon_sym_u_DQUOTE] = ACTIONS(1200), - [anon_sym_U_DQUOTE] = ACTIONS(1200), - [anon_sym_u8_DQUOTE] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_true] = ACTIONS(1198), - [sym_false] = ACTIONS(1198), - [anon_sym_NULL] = ACTIONS(1198), - [anon_sym_nullptr] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - }, - [163] = { - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___attribute] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym__Nonnull] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [anon_sym___asm] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - }, - [164] = { - [sym_identifier] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___attribute] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym__Nonnull] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [anon_sym___asm] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - }, - [165] = { - [sym_identifier] = ACTIONS(1246), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___attribute] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym__Nonnull] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), + [STATE(96)] = { + [sym_declaration] = STATE(294), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(306), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(294), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1244), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [anon_sym___asm] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [sym_identifier] = ACTIONS(1250), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___attribute] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym__Nonnull] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [anon_sym___asm] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1258), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___attribute] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym__Nonnull] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [anon_sym___asm] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1226), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___attribute] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym__Nonnull] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [anon_sym___asm] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1218), - [aux_sym_preproc_include_token1] = ACTIONS(1218), - [aux_sym_preproc_def_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_LPAREN2] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(1218), - [anon_sym___attribute] = ACTIONS(1218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), - [anon_sym___declspec] = ACTIONS(1218), - [anon_sym___cdecl] = ACTIONS(1218), - [anon_sym___clrcall] = ACTIONS(1218), - [anon_sym___stdcall] = ACTIONS(1218), - [anon_sym___fastcall] = ACTIONS(1218), - [anon_sym___thiscall] = ACTIONS(1218), - [anon_sym___vectorcall] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym___restrict__] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym__Noreturn] = ACTIONS(1218), - [anon_sym_noreturn] = ACTIONS(1218), - [anon_sym__Nonnull] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_goto] = ACTIONS(1218), - [anon_sym___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1218), - [anon_sym___asm__] = ACTIONS(1218), - [anon_sym___asm] = ACTIONS(1218), - [sym_number_literal] = ACTIONS(1220), - [anon_sym_L_SQUOTE] = ACTIONS(1220), - [anon_sym_u_SQUOTE] = ACTIONS(1220), - [anon_sym_U_SQUOTE] = ACTIONS(1220), - [anon_sym_u8_SQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1218), - [sym_false] = ACTIONS(1218), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1186), - [aux_sym_preproc_include_token1] = ACTIONS(1186), - [aux_sym_preproc_def_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), - [sym_preproc_directive] = ACTIONS(1186), - [anon_sym_LPAREN2] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym___extension__] = ACTIONS(1186), - [anon_sym_typedef] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym___attribute__] = ACTIONS(1186), - [anon_sym___attribute] = ACTIONS(1186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), - [anon_sym___declspec] = ACTIONS(1186), - [anon_sym___cdecl] = ACTIONS(1186), - [anon_sym___clrcall] = ACTIONS(1186), - [anon_sym___stdcall] = ACTIONS(1186), - [anon_sym___fastcall] = ACTIONS(1186), - [anon_sym___thiscall] = ACTIONS(1186), - [anon_sym___vectorcall] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_signed] = ACTIONS(1186), - [anon_sym_unsigned] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_auto] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_inline] = ACTIONS(1186), - [anon_sym___inline] = ACTIONS(1186), - [anon_sym___inline__] = ACTIONS(1186), - [anon_sym___forceinline] = ACTIONS(1186), - [anon_sym_thread_local] = ACTIONS(1186), - [anon_sym___thread] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_constexpr] = ACTIONS(1186), - [anon_sym_volatile] = ACTIONS(1186), - [anon_sym_restrict] = ACTIONS(1186), - [anon_sym___restrict__] = ACTIONS(1186), - [anon_sym__Atomic] = ACTIONS(1186), - [anon_sym__Noreturn] = ACTIONS(1186), - [anon_sym_noreturn] = ACTIONS(1186), - [anon_sym__Nonnull] = ACTIONS(1186), - [anon_sym_alignas] = ACTIONS(1186), - [anon_sym__Alignas] = ACTIONS(1186), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1186), - [anon_sym___try] = ACTIONS(1186), - [anon_sym___leave] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_sizeof] = ACTIONS(1186), - [anon_sym___alignof__] = ACTIONS(1186), - [anon_sym___alignof] = ACTIONS(1186), - [anon_sym__alignof] = ACTIONS(1186), - [anon_sym_alignof] = ACTIONS(1186), - [anon_sym__Alignof] = ACTIONS(1186), - [anon_sym_offsetof] = ACTIONS(1186), - [anon_sym__Generic] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym___asm__] = ACTIONS(1186), - [anon_sym___asm] = ACTIONS(1186), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(1188), - [anon_sym_u_SQUOTE] = ACTIONS(1188), - [anon_sym_U_SQUOTE] = ACTIONS(1188), - [anon_sym_u8_SQUOTE] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_L_DQUOTE] = ACTIONS(1188), - [anon_sym_u_DQUOTE] = ACTIONS(1188), - [anon_sym_U_DQUOTE] = ACTIONS(1188), - [anon_sym_u8_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_true] = ACTIONS(1186), - [sym_false] = ACTIONS(1186), - [anon_sym_NULL] = ACTIONS(1186), - [anon_sym_nullptr] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [sym_identifier] = ACTIONS(1254), - [aux_sym_preproc_include_token1] = ACTIONS(1254), - [aux_sym_preproc_def_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), - [sym_preproc_directive] = ACTIONS(1254), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym___attribute__] = ACTIONS(1254), - [anon_sym___attribute] = ACTIONS(1254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), - [anon_sym___declspec] = ACTIONS(1254), - [anon_sym___cdecl] = ACTIONS(1254), - [anon_sym___clrcall] = ACTIONS(1254), - [anon_sym___stdcall] = ACTIONS(1254), - [anon_sym___fastcall] = ACTIONS(1254), - [anon_sym___thiscall] = ACTIONS(1254), - [anon_sym___vectorcall] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1254), - [anon_sym_unsigned] = ACTIONS(1254), - [anon_sym_long] = ACTIONS(1254), - [anon_sym_short] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_auto] = ACTIONS(1254), - [anon_sym_register] = ACTIONS(1254), - [anon_sym_inline] = ACTIONS(1254), - [anon_sym___inline] = ACTIONS(1254), - [anon_sym___inline__] = ACTIONS(1254), - [anon_sym___forceinline] = ACTIONS(1254), - [anon_sym_thread_local] = ACTIONS(1254), - [anon_sym___thread] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_constexpr] = ACTIONS(1254), - [anon_sym_volatile] = ACTIONS(1254), - [anon_sym_restrict] = ACTIONS(1254), - [anon_sym___restrict__] = ACTIONS(1254), - [anon_sym__Atomic] = ACTIONS(1254), - [anon_sym__Noreturn] = ACTIONS(1254), - [anon_sym_noreturn] = ACTIONS(1254), - [anon_sym__Nonnull] = ACTIONS(1254), - [anon_sym_alignas] = ACTIONS(1254), - [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_case] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_goto] = ACTIONS(1254), - [anon_sym___try] = ACTIONS(1254), - [anon_sym___leave] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_sizeof] = ACTIONS(1254), - [anon_sym___alignof__] = ACTIONS(1254), - [anon_sym___alignof] = ACTIONS(1254), - [anon_sym__alignof] = ACTIONS(1254), - [anon_sym_alignof] = ACTIONS(1254), - [anon_sym__Alignof] = ACTIONS(1254), - [anon_sym_offsetof] = ACTIONS(1254), - [anon_sym__Generic] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1254), - [anon_sym___asm__] = ACTIONS(1254), - [anon_sym___asm] = ACTIONS(1254), - [sym_number_literal] = ACTIONS(1256), - [anon_sym_L_SQUOTE] = ACTIONS(1256), - [anon_sym_u_SQUOTE] = ACTIONS(1256), - [anon_sym_U_SQUOTE] = ACTIONS(1256), - [anon_sym_u8_SQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_L_DQUOTE] = ACTIONS(1256), - [anon_sym_u_DQUOTE] = ACTIONS(1256), - [anon_sym_U_DQUOTE] = ACTIONS(1256), - [anon_sym_u8_DQUOTE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_true] = ACTIONS(1254), - [sym_false] = ACTIONS(1254), - [anon_sym_NULL] = ACTIONS(1254), - [anon_sym_nullptr] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(1208), - [sym_identifier] = ACTIONS(1206), - [aux_sym_preproc_include_token1] = ACTIONS(1206), - [aux_sym_preproc_def_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), - [sym_preproc_directive] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym___extension__] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym___attribute__] = ACTIONS(1206), - [anon_sym___attribute] = ACTIONS(1206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), - [anon_sym___declspec] = ACTIONS(1206), - [anon_sym___cdecl] = ACTIONS(1206), - [anon_sym___clrcall] = ACTIONS(1206), - [anon_sym___stdcall] = ACTIONS(1206), - [anon_sym___fastcall] = ACTIONS(1206), - [anon_sym___thiscall] = ACTIONS(1206), - [anon_sym___vectorcall] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1206), - [anon_sym_unsigned] = ACTIONS(1206), - [anon_sym_long] = ACTIONS(1206), - [anon_sym_short] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_auto] = ACTIONS(1206), - [anon_sym_register] = ACTIONS(1206), - [anon_sym_inline] = ACTIONS(1206), - [anon_sym___inline] = ACTIONS(1206), - [anon_sym___inline__] = ACTIONS(1206), - [anon_sym___forceinline] = ACTIONS(1206), - [anon_sym_thread_local] = ACTIONS(1206), - [anon_sym___thread] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_constexpr] = ACTIONS(1206), - [anon_sym_volatile] = ACTIONS(1206), - [anon_sym_restrict] = ACTIONS(1206), - [anon_sym___restrict__] = ACTIONS(1206), - [anon_sym__Atomic] = ACTIONS(1206), - [anon_sym__Noreturn] = ACTIONS(1206), - [anon_sym_noreturn] = ACTIONS(1206), - [anon_sym__Nonnull] = ACTIONS(1206), - [anon_sym_alignas] = ACTIONS(1206), - [anon_sym__Alignas] = ACTIONS(1206), - [sym_primitive_type] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_union] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_switch] = ACTIONS(1206), - [anon_sym_case] = ACTIONS(1206), - [anon_sym_default] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_do] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_goto] = ACTIONS(1206), - [anon_sym___try] = ACTIONS(1206), - [anon_sym___leave] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_sizeof] = ACTIONS(1206), - [anon_sym___alignof__] = ACTIONS(1206), - [anon_sym___alignof] = ACTIONS(1206), - [anon_sym__alignof] = ACTIONS(1206), - [anon_sym_alignof] = ACTIONS(1206), - [anon_sym__Alignof] = ACTIONS(1206), - [anon_sym_offsetof] = ACTIONS(1206), - [anon_sym__Generic] = ACTIONS(1206), - [anon_sym_asm] = ACTIONS(1206), - [anon_sym___asm__] = ACTIONS(1206), - [anon_sym___asm] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(1208), - [anon_sym_L_SQUOTE] = ACTIONS(1208), - [anon_sym_u_SQUOTE] = ACTIONS(1208), - [anon_sym_U_SQUOTE] = ACTIONS(1208), - [anon_sym_u8_SQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_L_DQUOTE] = ACTIONS(1208), - [anon_sym_u_DQUOTE] = ACTIONS(1208), - [anon_sym_U_DQUOTE] = ACTIONS(1208), - [anon_sym_u8_DQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [anon_sym_NULL] = ACTIONS(1206), - [anon_sym_nullptr] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(1258), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___attribute] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym__Nonnull] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [anon_sym___asm] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [sym_identifier] = ACTIONS(1210), - [aux_sym_preproc_include_token1] = ACTIONS(1210), - [aux_sym_preproc_def_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), - [sym_preproc_directive] = ACTIONS(1210), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym___extension__] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym___attribute__] = ACTIONS(1210), - [anon_sym___attribute] = ACTIONS(1210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), - [anon_sym___declspec] = ACTIONS(1210), - [anon_sym___cdecl] = ACTIONS(1210), - [anon_sym___clrcall] = ACTIONS(1210), - [anon_sym___stdcall] = ACTIONS(1210), - [anon_sym___fastcall] = ACTIONS(1210), - [anon_sym___thiscall] = ACTIONS(1210), - [anon_sym___vectorcall] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1210), - [anon_sym_unsigned] = ACTIONS(1210), - [anon_sym_long] = ACTIONS(1210), - [anon_sym_short] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_auto] = ACTIONS(1210), - [anon_sym_register] = ACTIONS(1210), - [anon_sym_inline] = ACTIONS(1210), - [anon_sym___inline] = ACTIONS(1210), - [anon_sym___inline__] = ACTIONS(1210), - [anon_sym___forceinline] = ACTIONS(1210), - [anon_sym_thread_local] = ACTIONS(1210), - [anon_sym___thread] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_constexpr] = ACTIONS(1210), - [anon_sym_volatile] = ACTIONS(1210), - [anon_sym_restrict] = ACTIONS(1210), - [anon_sym___restrict__] = ACTIONS(1210), - [anon_sym__Atomic] = ACTIONS(1210), - [anon_sym__Noreturn] = ACTIONS(1210), - [anon_sym_noreturn] = ACTIONS(1210), - [anon_sym__Nonnull] = ACTIONS(1210), - [anon_sym_alignas] = ACTIONS(1210), - [anon_sym__Alignas] = ACTIONS(1210), - [sym_primitive_type] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1210), - [anon_sym___try] = ACTIONS(1210), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym___alignof__] = ACTIONS(1210), - [anon_sym___alignof] = ACTIONS(1210), - [anon_sym__alignof] = ACTIONS(1210), - [anon_sym_alignof] = ACTIONS(1210), - [anon_sym__Alignof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1210), - [anon_sym__Generic] = ACTIONS(1210), - [anon_sym_asm] = ACTIONS(1210), - [anon_sym___asm__] = ACTIONS(1210), - [anon_sym___asm] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_L_SQUOTE] = ACTIONS(1212), - [anon_sym_u_SQUOTE] = ACTIONS(1212), - [anon_sym_U_SQUOTE] = ACTIONS(1212), - [anon_sym_u8_SQUOTE] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_L_DQUOTE] = ACTIONS(1212), - [anon_sym_u_DQUOTE] = ACTIONS(1212), - [anon_sym_U_DQUOTE] = ACTIONS(1212), - [anon_sym_u8_DQUOTE] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_true] = ACTIONS(1210), - [sym_false] = ACTIONS(1210), - [anon_sym_NULL] = ACTIONS(1210), - [anon_sym_nullptr] = ACTIONS(1210), - [sym_comment] = ACTIONS(3), - }, - [177] = { - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym___extension__] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym___attribute__] = ACTIONS(1138), - [anon_sym___attribute] = ACTIONS(1138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym___declspec] = ACTIONS(1138), - [anon_sym___cdecl] = ACTIONS(1138), - [anon_sym___clrcall] = ACTIONS(1138), - [anon_sym___stdcall] = ACTIONS(1138), - [anon_sym___fastcall] = ACTIONS(1138), - [anon_sym___thiscall] = ACTIONS(1138), - [anon_sym___vectorcall] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym___inline] = ACTIONS(1138), - [anon_sym___inline__] = ACTIONS(1138), - [anon_sym___forceinline] = ACTIONS(1138), - [anon_sym_thread_local] = ACTIONS(1138), - [anon_sym___thread] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_constexpr] = ACTIONS(1138), - [anon_sym_volatile] = ACTIONS(1138), - [anon_sym_restrict] = ACTIONS(1138), - [anon_sym___restrict__] = ACTIONS(1138), - [anon_sym__Atomic] = ACTIONS(1138), - [anon_sym__Noreturn] = ACTIONS(1138), - [anon_sym_noreturn] = ACTIONS(1138), - [anon_sym__Nonnull] = ACTIONS(1138), - [anon_sym_alignas] = ACTIONS(1138), - [anon_sym__Alignas] = ACTIONS(1138), - [sym_primitive_type] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_goto] = ACTIONS(1138), - [anon_sym___try] = ACTIONS(1138), - [anon_sym___leave] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym___alignof__] = ACTIONS(1138), - [anon_sym___alignof] = ACTIONS(1138), - [anon_sym__alignof] = ACTIONS(1138), - [anon_sym_alignof] = ACTIONS(1138), - [anon_sym__Alignof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = ACTIONS(1138), - [anon_sym_asm] = ACTIONS(1138), - [anon_sym___asm__] = ACTIONS(1138), - [anon_sym___asm] = ACTIONS(1138), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1140), - [anon_sym_u_SQUOTE] = ACTIONS(1140), - [anon_sym_U_SQUOTE] = ACTIONS(1140), - [anon_sym_u8_SQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_L_DQUOTE] = ACTIONS(1140), - [anon_sym_u_DQUOTE] = ACTIONS(1140), - [anon_sym_U_DQUOTE] = ACTIONS(1140), - [anon_sym_u8_DQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [anon_sym_NULL] = ACTIONS(1138), - [anon_sym_nullptr] = ACTIONS(1138), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token2] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___attribute] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym__Nonnull] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [anon_sym___asm] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), - [sym_comment] = ACTIONS(3), - }, - [179] = { - [sym_identifier] = ACTIONS(1230), - [aux_sym_preproc_include_token1] = ACTIONS(1230), - [aux_sym_preproc_def_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token1] = ACTIONS(1230), - [aux_sym_preproc_if_token2] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), - [sym_preproc_directive] = ACTIONS(1230), - [anon_sym_LPAREN2] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym___extension__] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym___attribute__] = ACTIONS(1230), - [anon_sym___attribute] = ACTIONS(1230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1232), - [anon_sym___declspec] = ACTIONS(1230), - [anon_sym___cdecl] = ACTIONS(1230), - [anon_sym___clrcall] = ACTIONS(1230), - [anon_sym___stdcall] = ACTIONS(1230), - [anon_sym___fastcall] = ACTIONS(1230), - [anon_sym___thiscall] = ACTIONS(1230), - [anon_sym___vectorcall] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_signed] = ACTIONS(1230), - [anon_sym_unsigned] = ACTIONS(1230), - [anon_sym_long] = ACTIONS(1230), - [anon_sym_short] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_auto] = ACTIONS(1230), - [anon_sym_register] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1230), - [anon_sym___inline] = ACTIONS(1230), - [anon_sym___inline__] = ACTIONS(1230), - [anon_sym___forceinline] = ACTIONS(1230), - [anon_sym_thread_local] = ACTIONS(1230), - [anon_sym___thread] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_constexpr] = ACTIONS(1230), - [anon_sym_volatile] = ACTIONS(1230), - [anon_sym_restrict] = ACTIONS(1230), - [anon_sym___restrict__] = ACTIONS(1230), - [anon_sym__Atomic] = ACTIONS(1230), - [anon_sym__Noreturn] = ACTIONS(1230), - [anon_sym_noreturn] = ACTIONS(1230), - [anon_sym__Nonnull] = ACTIONS(1230), - [anon_sym_alignas] = ACTIONS(1230), - [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_goto] = ACTIONS(1230), - [anon_sym___try] = ACTIONS(1230), - [anon_sym___leave] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_sizeof] = ACTIONS(1230), - [anon_sym___alignof__] = ACTIONS(1230), - [anon_sym___alignof] = ACTIONS(1230), - [anon_sym__alignof] = ACTIONS(1230), - [anon_sym_alignof] = ACTIONS(1230), - [anon_sym__Alignof] = ACTIONS(1230), - [anon_sym_offsetof] = ACTIONS(1230), - [anon_sym__Generic] = ACTIONS(1230), - [anon_sym_asm] = ACTIONS(1230), - [anon_sym___asm__] = ACTIONS(1230), - [anon_sym___asm] = ACTIONS(1230), - [sym_number_literal] = ACTIONS(1232), - [anon_sym_L_SQUOTE] = ACTIONS(1232), - [anon_sym_u_SQUOTE] = ACTIONS(1232), - [anon_sym_U_SQUOTE] = ACTIONS(1232), - [anon_sym_u8_SQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_L_DQUOTE] = ACTIONS(1232), - [anon_sym_u_DQUOTE] = ACTIONS(1232), - [anon_sym_U_DQUOTE] = ACTIONS(1232), - [anon_sym_u8_DQUOTE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_true] = ACTIONS(1230), - [sym_false] = ACTIONS(1230), - [anon_sym_NULL] = ACTIONS(1230), - [anon_sym_nullptr] = ACTIONS(1230), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___attribute] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym__Nonnull] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [anon_sym___asm] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [sym_identifier] = ACTIONS(1226), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___attribute] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym__Nonnull] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [anon_sym___asm] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [aux_sym_preproc_if_token2] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym___extension__] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym___attribute] = ACTIONS(1238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1240), - [anon_sym___declspec] = ACTIONS(1238), - [anon_sym___cdecl] = ACTIONS(1238), - [anon_sym___clrcall] = ACTIONS(1238), - [anon_sym___stdcall] = ACTIONS(1238), - [anon_sym___fastcall] = ACTIONS(1238), - [anon_sym___thiscall] = ACTIONS(1238), - [anon_sym___vectorcall] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), - [anon_sym___inline] = ACTIONS(1238), - [anon_sym___inline__] = ACTIONS(1238), - [anon_sym___forceinline] = ACTIONS(1238), - [anon_sym_thread_local] = ACTIONS(1238), - [anon_sym___thread] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_constexpr] = ACTIONS(1238), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [anon_sym___restrict__] = ACTIONS(1238), - [anon_sym__Atomic] = ACTIONS(1238), - [anon_sym__Noreturn] = ACTIONS(1238), - [anon_sym_noreturn] = ACTIONS(1238), - [anon_sym__Nonnull] = ACTIONS(1238), - [anon_sym_alignas] = ACTIONS(1238), - [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym___try] = ACTIONS(1238), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym___alignof__] = ACTIONS(1238), - [anon_sym___alignof] = ACTIONS(1238), - [anon_sym__alignof] = ACTIONS(1238), - [anon_sym_alignof] = ACTIONS(1238), - [anon_sym__Alignof] = ACTIONS(1238), - [anon_sym_offsetof] = ACTIONS(1238), - [anon_sym__Generic] = ACTIONS(1238), - [anon_sym_asm] = ACTIONS(1238), - [anon_sym___asm__] = ACTIONS(1238), - [anon_sym___asm] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym_u_SQUOTE] = ACTIONS(1240), - [anon_sym_U_SQUOTE] = ACTIONS(1240), - [anon_sym_u8_SQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_u_DQUOTE] = ACTIONS(1240), - [anon_sym_U_DQUOTE] = ACTIONS(1240), - [anon_sym_u8_DQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_true] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_NULL] = ACTIONS(1238), - [anon_sym_nullptr] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [sym_identifier] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___attribute] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym__Nonnull] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(63), [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [anon_sym___asm] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [sym_identifier] = ACTIONS(1246), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token2] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___attribute] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym__Nonnull] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [anon_sym___asm] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [sym_identifier] = ACTIONS(1250), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token2] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___attribute] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym__Nonnull] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(975), [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [anon_sym___asm] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_identifier] = ACTIONS(1258), - [aux_sym_preproc_include_token1] = ACTIONS(1258), - [aux_sym_preproc_def_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token1] = ACTIONS(1258), - [aux_sym_preproc_if_token2] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), - [sym_preproc_directive] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym___extension__] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym___attribute__] = ACTIONS(1258), - [anon_sym___attribute] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1260), - [anon_sym___declspec] = ACTIONS(1258), - [anon_sym___cdecl] = ACTIONS(1258), - [anon_sym___clrcall] = ACTIONS(1258), - [anon_sym___stdcall] = ACTIONS(1258), - [anon_sym___fastcall] = ACTIONS(1258), - [anon_sym___thiscall] = ACTIONS(1258), - [anon_sym___vectorcall] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1258), - [anon_sym_unsigned] = ACTIONS(1258), - [anon_sym_long] = ACTIONS(1258), - [anon_sym_short] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_auto] = ACTIONS(1258), - [anon_sym_register] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1258), - [anon_sym___inline] = ACTIONS(1258), - [anon_sym___inline__] = ACTIONS(1258), - [anon_sym___forceinline] = ACTIONS(1258), - [anon_sym_thread_local] = ACTIONS(1258), - [anon_sym___thread] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_constexpr] = ACTIONS(1258), - [anon_sym_volatile] = ACTIONS(1258), - [anon_sym_restrict] = ACTIONS(1258), - [anon_sym___restrict__] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1258), - [anon_sym__Noreturn] = ACTIONS(1258), - [anon_sym_noreturn] = ACTIONS(1258), - [anon_sym__Nonnull] = ACTIONS(1258), - [anon_sym_alignas] = ACTIONS(1258), - [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1258), - [anon_sym___try] = ACTIONS(1258), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1258), - [anon_sym___alignof__] = ACTIONS(1258), - [anon_sym___alignof] = ACTIONS(1258), - [anon_sym__alignof] = ACTIONS(1258), - [anon_sym_alignof] = ACTIONS(1258), - [anon_sym__Alignof] = ACTIONS(1258), - [anon_sym_offsetof] = ACTIONS(1258), - [anon_sym__Generic] = ACTIONS(1258), - [anon_sym_asm] = ACTIONS(1258), - [anon_sym___asm__] = ACTIONS(1258), - [anon_sym___asm] = ACTIONS(1258), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_L_SQUOTE] = ACTIONS(1260), - [anon_sym_u_SQUOTE] = ACTIONS(1260), - [anon_sym_U_SQUOTE] = ACTIONS(1260), - [anon_sym_u8_SQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_L_DQUOTE] = ACTIONS(1260), - [anon_sym_u_DQUOTE] = ACTIONS(1260), - [anon_sym_U_DQUOTE] = ACTIONS(1260), - [anon_sym_u8_DQUOTE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_true] = ACTIONS(1258), - [sym_false] = ACTIONS(1258), - [anon_sym_NULL] = ACTIONS(1258), - [anon_sym_nullptr] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - }, - [187] = { - [sym_identifier] = ACTIONS(1226), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [aux_sym_preproc_if_token2] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym___extension__] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym___attribute] = ACTIONS(1226), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1228), - [anon_sym___declspec] = ACTIONS(1226), - [anon_sym___cdecl] = ACTIONS(1226), - [anon_sym___clrcall] = ACTIONS(1226), - [anon_sym___stdcall] = ACTIONS(1226), - [anon_sym___fastcall] = ACTIONS(1226), - [anon_sym___thiscall] = ACTIONS(1226), - [anon_sym___vectorcall] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_signed] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), - [anon_sym___inline] = ACTIONS(1226), - [anon_sym___inline__] = ACTIONS(1226), - [anon_sym___forceinline] = ACTIONS(1226), - [anon_sym_thread_local] = ACTIONS(1226), - [anon_sym___thread] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_constexpr] = ACTIONS(1226), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [anon_sym___restrict__] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [anon_sym__Noreturn] = ACTIONS(1226), - [anon_sym_noreturn] = ACTIONS(1226), - [anon_sym__Nonnull] = ACTIONS(1226), - [anon_sym_alignas] = ACTIONS(1226), - [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym___try] = ACTIONS(1226), - [anon_sym___leave] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym___alignof__] = ACTIONS(1226), - [anon_sym___alignof] = ACTIONS(1226), - [anon_sym__alignof] = ACTIONS(1226), - [anon_sym_alignof] = ACTIONS(1226), - [anon_sym__Alignof] = ACTIONS(1226), - [anon_sym_offsetof] = ACTIONS(1226), - [anon_sym__Generic] = ACTIONS(1226), - [anon_sym_asm] = ACTIONS(1226), - [anon_sym___asm__] = ACTIONS(1226), - [anon_sym___asm] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_u_SQUOTE] = ACTIONS(1228), - [anon_sym_U_SQUOTE] = ACTIONS(1228), - [anon_sym_u8_SQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_u_DQUOTE] = ACTIONS(1228), - [anon_sym_U_DQUOTE] = ACTIONS(1228), - [anon_sym_u8_DQUOTE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_true] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_NULL] = ACTIONS(1226), - [anon_sym_nullptr] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [sym_identifier] = ACTIONS(1218), - [aux_sym_preproc_include_token1] = ACTIONS(1218), - [aux_sym_preproc_def_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token1] = ACTIONS(1218), - [aux_sym_preproc_if_token2] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), - [sym_preproc_directive] = ACTIONS(1218), - [anon_sym_LPAREN2] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym___extension__] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(1218), - [anon_sym___attribute] = ACTIONS(1218), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1220), - [anon_sym___declspec] = ACTIONS(1218), - [anon_sym___cdecl] = ACTIONS(1218), - [anon_sym___clrcall] = ACTIONS(1218), - [anon_sym___stdcall] = ACTIONS(1218), - [anon_sym___fastcall] = ACTIONS(1218), - [anon_sym___thiscall] = ACTIONS(1218), - [anon_sym___vectorcall] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_signed] = ACTIONS(1218), - [anon_sym_unsigned] = ACTIONS(1218), - [anon_sym_long] = ACTIONS(1218), - [anon_sym_short] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_auto] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_inline] = ACTIONS(1218), - [anon_sym___inline] = ACTIONS(1218), - [anon_sym___inline__] = ACTIONS(1218), - [anon_sym___forceinline] = ACTIONS(1218), - [anon_sym_thread_local] = ACTIONS(1218), - [anon_sym___thread] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_constexpr] = ACTIONS(1218), - [anon_sym_volatile] = ACTIONS(1218), - [anon_sym_restrict] = ACTIONS(1218), - [anon_sym___restrict__] = ACTIONS(1218), - [anon_sym__Atomic] = ACTIONS(1218), - [anon_sym__Noreturn] = ACTIONS(1218), - [anon_sym_noreturn] = ACTIONS(1218), - [anon_sym__Nonnull] = ACTIONS(1218), - [anon_sym_alignas] = ACTIONS(1218), - [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_goto] = ACTIONS(1218), - [anon_sym___try] = ACTIONS(1218), - [anon_sym___leave] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_sizeof] = ACTIONS(1218), - [anon_sym___alignof__] = ACTIONS(1218), - [anon_sym___alignof] = ACTIONS(1218), - [anon_sym__alignof] = ACTIONS(1218), - [anon_sym_alignof] = ACTIONS(1218), - [anon_sym__Alignof] = ACTIONS(1218), - [anon_sym_offsetof] = ACTIONS(1218), - [anon_sym__Generic] = ACTIONS(1218), - [anon_sym_asm] = ACTIONS(1218), - [anon_sym___asm__] = ACTIONS(1218), - [anon_sym___asm] = ACTIONS(1218), - [sym_number_literal] = ACTIONS(1220), - [anon_sym_L_SQUOTE] = ACTIONS(1220), - [anon_sym_u_SQUOTE] = ACTIONS(1220), - [anon_sym_U_SQUOTE] = ACTIONS(1220), - [anon_sym_u8_SQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1218), - [sym_false] = ACTIONS(1218), - [anon_sym_NULL] = ACTIONS(1218), - [anon_sym_nullptr] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [sym_identifier] = ACTIONS(1142), - [aux_sym_preproc_include_token1] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym___extension__] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1142), - [anon_sym___attribute] = ACTIONS(1142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym___declspec] = ACTIONS(1142), - [anon_sym___cdecl] = ACTIONS(1142), - [anon_sym___clrcall] = ACTIONS(1142), - [anon_sym___stdcall] = ACTIONS(1142), - [anon_sym___fastcall] = ACTIONS(1142), - [anon_sym___thiscall] = ACTIONS(1142), - [anon_sym___vectorcall] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1142), - [anon_sym_unsigned] = ACTIONS(1142), - [anon_sym_long] = ACTIONS(1142), - [anon_sym_short] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_auto] = ACTIONS(1142), - [anon_sym_register] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1142), - [anon_sym___inline] = ACTIONS(1142), - [anon_sym___inline__] = ACTIONS(1142), - [anon_sym___forceinline] = ACTIONS(1142), - [anon_sym_thread_local] = ACTIONS(1142), - [anon_sym___thread] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_constexpr] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1142), - [anon_sym_restrict] = ACTIONS(1142), - [anon_sym___restrict__] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1142), - [anon_sym__Noreturn] = ACTIONS(1142), - [anon_sym_noreturn] = ACTIONS(1142), - [anon_sym__Nonnull] = ACTIONS(1142), - [anon_sym_alignas] = ACTIONS(1142), - [anon_sym__Alignas] = ACTIONS(1142), - [sym_primitive_type] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_goto] = ACTIONS(1142), - [anon_sym___try] = ACTIONS(1142), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1142), - [anon_sym___alignof__] = ACTIONS(1142), - [anon_sym___alignof] = ACTIONS(1142), - [anon_sym__alignof] = ACTIONS(1142), - [anon_sym_alignof] = ACTIONS(1142), - [anon_sym__Alignof] = ACTIONS(1142), - [anon_sym_offsetof] = ACTIONS(1142), - [anon_sym__Generic] = ACTIONS(1142), - [anon_sym_asm] = ACTIONS(1142), - [anon_sym___asm__] = ACTIONS(1142), - [anon_sym___asm] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1144), - [anon_sym_L_SQUOTE] = ACTIONS(1144), - [anon_sym_u_SQUOTE] = ACTIONS(1144), - [anon_sym_U_SQUOTE] = ACTIONS(1144), - [anon_sym_u8_SQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_L_DQUOTE] = ACTIONS(1144), - [anon_sym_u_DQUOTE] = ACTIONS(1144), - [anon_sym_U_DQUOTE] = ACTIONS(1144), - [anon_sym_u8_DQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_true] = ACTIONS(1142), - [sym_false] = ACTIONS(1142), - [anon_sym_NULL] = ACTIONS(1142), - [anon_sym_nullptr] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [sym_identifier] = ACTIONS(1254), - [aux_sym_preproc_include_token1] = ACTIONS(1254), - [aux_sym_preproc_def_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token2] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), - [sym_preproc_directive] = ACTIONS(1254), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym___attribute__] = ACTIONS(1254), - [anon_sym___attribute] = ACTIONS(1254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), - [anon_sym___declspec] = ACTIONS(1254), - [anon_sym___cdecl] = ACTIONS(1254), - [anon_sym___clrcall] = ACTIONS(1254), - [anon_sym___stdcall] = ACTIONS(1254), - [anon_sym___fastcall] = ACTIONS(1254), - [anon_sym___thiscall] = ACTIONS(1254), - [anon_sym___vectorcall] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1254), - [anon_sym_unsigned] = ACTIONS(1254), - [anon_sym_long] = ACTIONS(1254), - [anon_sym_short] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_auto] = ACTIONS(1254), - [anon_sym_register] = ACTIONS(1254), - [anon_sym_inline] = ACTIONS(1254), - [anon_sym___inline] = ACTIONS(1254), - [anon_sym___inline__] = ACTIONS(1254), - [anon_sym___forceinline] = ACTIONS(1254), - [anon_sym_thread_local] = ACTIONS(1254), - [anon_sym___thread] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_constexpr] = ACTIONS(1254), - [anon_sym_volatile] = ACTIONS(1254), - [anon_sym_restrict] = ACTIONS(1254), - [anon_sym___restrict__] = ACTIONS(1254), - [anon_sym__Atomic] = ACTIONS(1254), - [anon_sym__Noreturn] = ACTIONS(1254), - [anon_sym_noreturn] = ACTIONS(1254), - [anon_sym__Nonnull] = ACTIONS(1254), - [anon_sym_alignas] = ACTIONS(1254), - [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_case] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_goto] = ACTIONS(1254), - [anon_sym___try] = ACTIONS(1254), - [anon_sym___leave] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_sizeof] = ACTIONS(1254), - [anon_sym___alignof__] = ACTIONS(1254), - [anon_sym___alignof] = ACTIONS(1254), - [anon_sym__alignof] = ACTIONS(1254), - [anon_sym_alignof] = ACTIONS(1254), - [anon_sym__Alignof] = ACTIONS(1254), - [anon_sym_offsetof] = ACTIONS(1254), - [anon_sym__Generic] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1254), - [anon_sym___asm__] = ACTIONS(1254), - [anon_sym___asm] = ACTIONS(1254), - [sym_number_literal] = ACTIONS(1256), - [anon_sym_L_SQUOTE] = ACTIONS(1256), - [anon_sym_u_SQUOTE] = ACTIONS(1256), - [anon_sym_U_SQUOTE] = ACTIONS(1256), - [anon_sym_u8_SQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_L_DQUOTE] = ACTIONS(1256), - [anon_sym_u_DQUOTE] = ACTIONS(1256), - [anon_sym_U_DQUOTE] = ACTIONS(1256), - [anon_sym_u8_DQUOTE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_true] = ACTIONS(1254), - [sym_false] = ACTIONS(1254), - [anon_sym_NULL] = ACTIONS(1254), - [anon_sym_nullptr] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - }, - [191] = { - [sym_identifier] = ACTIONS(1146), - [aux_sym_preproc_include_token1] = ACTIONS(1146), - [aux_sym_preproc_def_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), - [sym_preproc_directive] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym___extension__] = ACTIONS(1146), - [anon_sym_typedef] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym___attribute__] = ACTIONS(1146), - [anon_sym___attribute] = ACTIONS(1146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), - [anon_sym___declspec] = ACTIONS(1146), - [anon_sym___cdecl] = ACTIONS(1146), - [anon_sym___clrcall] = ACTIONS(1146), - [anon_sym___stdcall] = ACTIONS(1146), - [anon_sym___fastcall] = ACTIONS(1146), - [anon_sym___thiscall] = ACTIONS(1146), - [anon_sym___vectorcall] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_signed] = ACTIONS(1146), - [anon_sym_unsigned] = ACTIONS(1146), - [anon_sym_long] = ACTIONS(1146), - [anon_sym_short] = ACTIONS(1146), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_auto] = ACTIONS(1146), - [anon_sym_register] = ACTIONS(1146), - [anon_sym_inline] = ACTIONS(1146), - [anon_sym___inline] = ACTIONS(1146), - [anon_sym___inline__] = ACTIONS(1146), - [anon_sym___forceinline] = ACTIONS(1146), - [anon_sym_thread_local] = ACTIONS(1146), - [anon_sym___thread] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_constexpr] = ACTIONS(1146), - [anon_sym_volatile] = ACTIONS(1146), - [anon_sym_restrict] = ACTIONS(1146), - [anon_sym___restrict__] = ACTIONS(1146), - [anon_sym__Atomic] = ACTIONS(1146), - [anon_sym__Noreturn] = ACTIONS(1146), - [anon_sym_noreturn] = ACTIONS(1146), - [anon_sym__Nonnull] = ACTIONS(1146), - [anon_sym_alignas] = ACTIONS(1146), - [anon_sym__Alignas] = ACTIONS(1146), - [sym_primitive_type] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1146), - [anon_sym___leave] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_sizeof] = ACTIONS(1146), - [anon_sym___alignof__] = ACTIONS(1146), - [anon_sym___alignof] = ACTIONS(1146), - [anon_sym__alignof] = ACTIONS(1146), - [anon_sym_alignof] = ACTIONS(1146), - [anon_sym__Alignof] = ACTIONS(1146), - [anon_sym_offsetof] = ACTIONS(1146), - [anon_sym__Generic] = ACTIONS(1146), - [anon_sym_asm] = ACTIONS(1146), - [anon_sym___asm__] = ACTIONS(1146), - [anon_sym___asm] = ACTIONS(1146), - [sym_number_literal] = ACTIONS(1148), - [anon_sym_L_SQUOTE] = ACTIONS(1148), - [anon_sym_u_SQUOTE] = ACTIONS(1148), - [anon_sym_U_SQUOTE] = ACTIONS(1148), - [anon_sym_u8_SQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1146), - [sym_false] = ACTIONS(1146), - [anon_sym_NULL] = ACTIONS(1146), - [anon_sym_nullptr] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - }, - [192] = { - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1150), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym___attribute] = ACTIONS(1150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), - [anon_sym___declspec] = ACTIONS(1150), - [anon_sym___cdecl] = ACTIONS(1150), - [anon_sym___clrcall] = ACTIONS(1150), - [anon_sym___stdcall] = ACTIONS(1150), - [anon_sym___fastcall] = ACTIONS(1150), - [anon_sym___thiscall] = ACTIONS(1150), - [anon_sym___vectorcall] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_RBRACE] = ACTIONS(1152), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym___inline] = ACTIONS(1150), - [anon_sym___inline__] = ACTIONS(1150), - [anon_sym___forceinline] = ACTIONS(1150), - [anon_sym_thread_local] = ACTIONS(1150), - [anon_sym___thread] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_constexpr] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym___restrict__] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym__Noreturn] = ACTIONS(1150), - [anon_sym_noreturn] = ACTIONS(1150), - [anon_sym__Nonnull] = ACTIONS(1150), - [anon_sym_alignas] = ACTIONS(1150), - [anon_sym__Alignas] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1150), - [anon_sym___leave] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [anon_sym___alignof__] = ACTIONS(1150), - [anon_sym___alignof] = ACTIONS(1150), - [anon_sym__alignof] = ACTIONS(1150), - [anon_sym_alignof] = ACTIONS(1150), - [anon_sym__Alignof] = ACTIONS(1150), - [anon_sym_offsetof] = ACTIONS(1150), - [anon_sym__Generic] = ACTIONS(1150), - [anon_sym_asm] = ACTIONS(1150), - [anon_sym___asm__] = ACTIONS(1150), - [anon_sym___asm] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [anon_sym_NULL] = ACTIONS(1150), - [anon_sym_nullptr] = ACTIONS(1150), - [sym_comment] = ACTIONS(3), - }, - [193] = { - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token2] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym___extension__] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym___attribute__] = ACTIONS(1138), - [anon_sym___attribute] = ACTIONS(1138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym___declspec] = ACTIONS(1138), - [anon_sym___cdecl] = ACTIONS(1138), - [anon_sym___clrcall] = ACTIONS(1138), - [anon_sym___stdcall] = ACTIONS(1138), - [anon_sym___fastcall] = ACTIONS(1138), - [anon_sym___thiscall] = ACTIONS(1138), - [anon_sym___vectorcall] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym___inline] = ACTIONS(1138), - [anon_sym___inline__] = ACTIONS(1138), - [anon_sym___forceinline] = ACTIONS(1138), - [anon_sym_thread_local] = ACTIONS(1138), - [anon_sym___thread] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_constexpr] = ACTIONS(1138), - [anon_sym_volatile] = ACTIONS(1138), - [anon_sym_restrict] = ACTIONS(1138), - [anon_sym___restrict__] = ACTIONS(1138), - [anon_sym__Atomic] = ACTIONS(1138), - [anon_sym__Noreturn] = ACTIONS(1138), - [anon_sym_noreturn] = ACTIONS(1138), - [anon_sym__Nonnull] = ACTIONS(1138), - [anon_sym_alignas] = ACTIONS(1138), - [anon_sym__Alignas] = ACTIONS(1138), - [sym_primitive_type] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_goto] = ACTIONS(1138), - [anon_sym___try] = ACTIONS(1138), - [anon_sym___leave] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym___alignof__] = ACTIONS(1138), - [anon_sym___alignof] = ACTIONS(1138), - [anon_sym__alignof] = ACTIONS(1138), - [anon_sym_alignof] = ACTIONS(1138), - [anon_sym__Alignof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = ACTIONS(1138), - [anon_sym_asm] = ACTIONS(1138), - [anon_sym___asm__] = ACTIONS(1138), - [anon_sym___asm] = ACTIONS(1138), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1140), - [anon_sym_u_SQUOTE] = ACTIONS(1140), - [anon_sym_U_SQUOTE] = ACTIONS(1140), - [anon_sym_u8_SQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_L_DQUOTE] = ACTIONS(1140), - [anon_sym_u_DQUOTE] = ACTIONS(1140), - [anon_sym_U_DQUOTE] = ACTIONS(1140), - [anon_sym_u8_DQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [anon_sym_NULL] = ACTIONS(1138), - [anon_sym_nullptr] = ACTIONS(1138), - [sym_comment] = ACTIONS(3), - }, - [194] = { - [sym_identifier] = ACTIONS(1142), - [aux_sym_preproc_include_token1] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token2] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym___extension__] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1142), - [anon_sym___attribute] = ACTIONS(1142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym___declspec] = ACTIONS(1142), - [anon_sym___cdecl] = ACTIONS(1142), - [anon_sym___clrcall] = ACTIONS(1142), - [anon_sym___stdcall] = ACTIONS(1142), - [anon_sym___fastcall] = ACTIONS(1142), - [anon_sym___thiscall] = ACTIONS(1142), - [anon_sym___vectorcall] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1142), - [anon_sym_unsigned] = ACTIONS(1142), - [anon_sym_long] = ACTIONS(1142), - [anon_sym_short] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_auto] = ACTIONS(1142), - [anon_sym_register] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1142), - [anon_sym___inline] = ACTIONS(1142), - [anon_sym___inline__] = ACTIONS(1142), - [anon_sym___forceinline] = ACTIONS(1142), - [anon_sym_thread_local] = ACTIONS(1142), - [anon_sym___thread] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_constexpr] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1142), - [anon_sym_restrict] = ACTIONS(1142), - [anon_sym___restrict__] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1142), - [anon_sym__Noreturn] = ACTIONS(1142), - [anon_sym_noreturn] = ACTIONS(1142), - [anon_sym__Nonnull] = ACTIONS(1142), - [anon_sym_alignas] = ACTIONS(1142), - [anon_sym__Alignas] = ACTIONS(1142), - [sym_primitive_type] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_goto] = ACTIONS(1142), - [anon_sym___try] = ACTIONS(1142), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1142), - [anon_sym___alignof__] = ACTIONS(1142), - [anon_sym___alignof] = ACTIONS(1142), - [anon_sym__alignof] = ACTIONS(1142), - [anon_sym_alignof] = ACTIONS(1142), - [anon_sym__Alignof] = ACTIONS(1142), - [anon_sym_offsetof] = ACTIONS(1142), - [anon_sym__Generic] = ACTIONS(1142), - [anon_sym_asm] = ACTIONS(1142), - [anon_sym___asm__] = ACTIONS(1142), - [anon_sym___asm] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1144), - [anon_sym_L_SQUOTE] = ACTIONS(1144), - [anon_sym_u_SQUOTE] = ACTIONS(1144), - [anon_sym_U_SQUOTE] = ACTIONS(1144), - [anon_sym_u8_SQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_L_DQUOTE] = ACTIONS(1144), - [anon_sym_u_DQUOTE] = ACTIONS(1144), - [anon_sym_U_DQUOTE] = ACTIONS(1144), - [anon_sym_u8_DQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_true] = ACTIONS(1142), - [sym_false] = ACTIONS(1142), - [anon_sym_NULL] = ACTIONS(1142), - [anon_sym_nullptr] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - }, - [195] = { - [sym_identifier] = ACTIONS(1146), - [aux_sym_preproc_include_token1] = ACTIONS(1146), - [aux_sym_preproc_def_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token2] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), - [sym_preproc_directive] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym___extension__] = ACTIONS(1146), - [anon_sym_typedef] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym___attribute__] = ACTIONS(1146), - [anon_sym___attribute] = ACTIONS(1146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), - [anon_sym___declspec] = ACTIONS(1146), - [anon_sym___cdecl] = ACTIONS(1146), - [anon_sym___clrcall] = ACTIONS(1146), - [anon_sym___stdcall] = ACTIONS(1146), - [anon_sym___fastcall] = ACTIONS(1146), - [anon_sym___thiscall] = ACTIONS(1146), - [anon_sym___vectorcall] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_signed] = ACTIONS(1146), - [anon_sym_unsigned] = ACTIONS(1146), - [anon_sym_long] = ACTIONS(1146), - [anon_sym_short] = ACTIONS(1146), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_auto] = ACTIONS(1146), - [anon_sym_register] = ACTIONS(1146), - [anon_sym_inline] = ACTIONS(1146), - [anon_sym___inline] = ACTIONS(1146), - [anon_sym___inline__] = ACTIONS(1146), - [anon_sym___forceinline] = ACTIONS(1146), - [anon_sym_thread_local] = ACTIONS(1146), - [anon_sym___thread] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_constexpr] = ACTIONS(1146), - [anon_sym_volatile] = ACTIONS(1146), - [anon_sym_restrict] = ACTIONS(1146), - [anon_sym___restrict__] = ACTIONS(1146), - [anon_sym__Atomic] = ACTIONS(1146), - [anon_sym__Noreturn] = ACTIONS(1146), - [anon_sym_noreturn] = ACTIONS(1146), - [anon_sym__Nonnull] = ACTIONS(1146), - [anon_sym_alignas] = ACTIONS(1146), - [anon_sym__Alignas] = ACTIONS(1146), - [sym_primitive_type] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1146), - [anon_sym___leave] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_sizeof] = ACTIONS(1146), - [anon_sym___alignof__] = ACTIONS(1146), - [anon_sym___alignof] = ACTIONS(1146), - [anon_sym__alignof] = ACTIONS(1146), - [anon_sym_alignof] = ACTIONS(1146), - [anon_sym__Alignof] = ACTIONS(1146), - [anon_sym_offsetof] = ACTIONS(1146), - [anon_sym__Generic] = ACTIONS(1146), - [anon_sym_asm] = ACTIONS(1146), - [anon_sym___asm__] = ACTIONS(1146), - [anon_sym___asm] = ACTIONS(1146), - [sym_number_literal] = ACTIONS(1148), - [anon_sym_L_SQUOTE] = ACTIONS(1148), - [anon_sym_u_SQUOTE] = ACTIONS(1148), - [anon_sym_U_SQUOTE] = ACTIONS(1148), - [anon_sym_u8_SQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1146), - [sym_false] = ACTIONS(1146), - [anon_sym_NULL] = ACTIONS(1146), - [anon_sym_nullptr] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - }, - [196] = { - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token2] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1150), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym___attribute] = ACTIONS(1150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), - [anon_sym___declspec] = ACTIONS(1150), - [anon_sym___cdecl] = ACTIONS(1150), - [anon_sym___clrcall] = ACTIONS(1150), - [anon_sym___stdcall] = ACTIONS(1150), - [anon_sym___fastcall] = ACTIONS(1150), - [anon_sym___thiscall] = ACTIONS(1150), - [anon_sym___vectorcall] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym___inline] = ACTIONS(1150), - [anon_sym___inline__] = ACTIONS(1150), - [anon_sym___forceinline] = ACTIONS(1150), - [anon_sym_thread_local] = ACTIONS(1150), - [anon_sym___thread] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_constexpr] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym___restrict__] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym__Noreturn] = ACTIONS(1150), - [anon_sym_noreturn] = ACTIONS(1150), - [anon_sym__Nonnull] = ACTIONS(1150), - [anon_sym_alignas] = ACTIONS(1150), - [anon_sym__Alignas] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1150), - [anon_sym___leave] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [anon_sym___alignof__] = ACTIONS(1150), - [anon_sym___alignof] = ACTIONS(1150), - [anon_sym__alignof] = ACTIONS(1150), - [anon_sym_alignof] = ACTIONS(1150), - [anon_sym__Alignof] = ACTIONS(1150), - [anon_sym_offsetof] = ACTIONS(1150), - [anon_sym__Generic] = ACTIONS(1150), - [anon_sym_asm] = ACTIONS(1150), - [anon_sym___asm__] = ACTIONS(1150), - [anon_sym___asm] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [anon_sym_NULL] = ACTIONS(1150), - [anon_sym_nullptr] = ACTIONS(1150), - [sym_comment] = ACTIONS(3), - }, - [197] = { - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token2] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym___extension__] = ACTIONS(1158), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym___attribute__] = ACTIONS(1158), - [anon_sym___attribute] = ACTIONS(1158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(1158), - [anon_sym___cdecl] = ACTIONS(1158), - [anon_sym___clrcall] = ACTIONS(1158), - [anon_sym___stdcall] = ACTIONS(1158), - [anon_sym___fastcall] = ACTIONS(1158), - [anon_sym___thiscall] = ACTIONS(1158), - [anon_sym___vectorcall] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_signed] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_inline] = ACTIONS(1158), - [anon_sym___inline] = ACTIONS(1158), - [anon_sym___inline__] = ACTIONS(1158), - [anon_sym___forceinline] = ACTIONS(1158), - [anon_sym_thread_local] = ACTIONS(1158), - [anon_sym___thread] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_constexpr] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym___restrict__] = ACTIONS(1158), - [anon_sym__Atomic] = ACTIONS(1158), - [anon_sym__Noreturn] = ACTIONS(1158), - [anon_sym_noreturn] = ACTIONS(1158), - [anon_sym__Nonnull] = ACTIONS(1158), - [anon_sym_alignas] = ACTIONS(1158), - [anon_sym__Alignas] = ACTIONS(1158), - [sym_primitive_type] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym___try] = ACTIONS(1158), - [anon_sym___leave] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_sizeof] = ACTIONS(1158), - [anon_sym___alignof__] = ACTIONS(1158), - [anon_sym___alignof] = ACTIONS(1158), - [anon_sym__alignof] = ACTIONS(1158), - [anon_sym_alignof] = ACTIONS(1158), - [anon_sym__Alignof] = ACTIONS(1158), - [anon_sym_offsetof] = ACTIONS(1158), - [anon_sym__Generic] = ACTIONS(1158), - [anon_sym_asm] = ACTIONS(1158), - [anon_sym___asm__] = ACTIONS(1158), - [anon_sym___asm] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1160), - [anon_sym_L_SQUOTE] = ACTIONS(1160), - [anon_sym_u_SQUOTE] = ACTIONS(1160), - [anon_sym_U_SQUOTE] = ACTIONS(1160), - [anon_sym_u8_SQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_L_DQUOTE] = ACTIONS(1160), - [anon_sym_u_DQUOTE] = ACTIONS(1160), - [anon_sym_U_DQUOTE] = ACTIONS(1160), - [anon_sym_u8_DQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [anon_sym_NULL] = ACTIONS(1158), - [anon_sym_nullptr] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - }, - [198] = { - [sym_identifier] = ACTIONS(1162), - [aux_sym_preproc_include_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token2] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), - [sym_preproc_directive] = ACTIONS(1162), - [anon_sym_LPAREN2] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym___extension__] = ACTIONS(1162), - [anon_sym_typedef] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym___attribute__] = ACTIONS(1162), - [anon_sym___attribute] = ACTIONS(1162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), - [anon_sym___declspec] = ACTIONS(1162), - [anon_sym___cdecl] = ACTIONS(1162), - [anon_sym___clrcall] = ACTIONS(1162), - [anon_sym___stdcall] = ACTIONS(1162), - [anon_sym___fastcall] = ACTIONS(1162), - [anon_sym___thiscall] = ACTIONS(1162), - [anon_sym___vectorcall] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_signed] = ACTIONS(1162), - [anon_sym_unsigned] = ACTIONS(1162), - [anon_sym_long] = ACTIONS(1162), - [anon_sym_short] = ACTIONS(1162), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_auto] = ACTIONS(1162), - [anon_sym_register] = ACTIONS(1162), - [anon_sym_inline] = ACTIONS(1162), - [anon_sym___inline] = ACTIONS(1162), - [anon_sym___inline__] = ACTIONS(1162), - [anon_sym___forceinline] = ACTIONS(1162), - [anon_sym_thread_local] = ACTIONS(1162), - [anon_sym___thread] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_constexpr] = ACTIONS(1162), - [anon_sym_volatile] = ACTIONS(1162), - [anon_sym_restrict] = ACTIONS(1162), - [anon_sym___restrict__] = ACTIONS(1162), - [anon_sym__Atomic] = ACTIONS(1162), - [anon_sym__Noreturn] = ACTIONS(1162), - [anon_sym_noreturn] = ACTIONS(1162), - [anon_sym__Nonnull] = ACTIONS(1162), - [anon_sym_alignas] = ACTIONS(1162), - [anon_sym__Alignas] = ACTIONS(1162), - [sym_primitive_type] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_else] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_do] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_goto] = ACTIONS(1162), - [anon_sym___try] = ACTIONS(1162), - [anon_sym___leave] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_sizeof] = ACTIONS(1162), - [anon_sym___alignof__] = ACTIONS(1162), - [anon_sym___alignof] = ACTIONS(1162), - [anon_sym__alignof] = ACTIONS(1162), - [anon_sym_alignof] = ACTIONS(1162), - [anon_sym__Alignof] = ACTIONS(1162), - [anon_sym_offsetof] = ACTIONS(1162), - [anon_sym__Generic] = ACTIONS(1162), - [anon_sym_asm] = ACTIONS(1162), - [anon_sym___asm__] = ACTIONS(1162), - [anon_sym___asm] = ACTIONS(1162), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_L_SQUOTE] = ACTIONS(1164), - [anon_sym_u_SQUOTE] = ACTIONS(1164), - [anon_sym_U_SQUOTE] = ACTIONS(1164), - [anon_sym_u8_SQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_L_DQUOTE] = ACTIONS(1164), - [anon_sym_u_DQUOTE] = ACTIONS(1164), - [anon_sym_U_DQUOTE] = ACTIONS(1164), - [anon_sym_u8_DQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_true] = ACTIONS(1162), - [sym_false] = ACTIONS(1162), - [anon_sym_NULL] = ACTIONS(1162), - [anon_sym_nullptr] = ACTIONS(1162), - [sym_comment] = ACTIONS(3), - }, - [199] = { - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token2] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym___attribute] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym___declspec] = ACTIONS(1166), - [anon_sym___cdecl] = ACTIONS(1166), - [anon_sym___clrcall] = ACTIONS(1166), - [anon_sym___stdcall] = ACTIONS(1166), - [anon_sym___fastcall] = ACTIONS(1166), - [anon_sym___thiscall] = ACTIONS(1166), - [anon_sym___vectorcall] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym___inline] = ACTIONS(1166), - [anon_sym___inline__] = ACTIONS(1166), - [anon_sym___forceinline] = ACTIONS(1166), - [anon_sym_thread_local] = ACTIONS(1166), - [anon_sym___thread] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym___restrict__] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym__Noreturn] = ACTIONS(1166), - [anon_sym_noreturn] = ACTIONS(1166), - [anon_sym__Nonnull] = ACTIONS(1166), - [anon_sym_alignas] = ACTIONS(1166), - [anon_sym__Alignas] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_else] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym___try] = ACTIONS(1166), - [anon_sym___leave] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym___alignof__] = ACTIONS(1166), - [anon_sym___alignof] = ACTIONS(1166), - [anon_sym__alignof] = ACTIONS(1166), - [anon_sym_alignof] = ACTIONS(1166), - [anon_sym__Alignof] = ACTIONS(1166), - [anon_sym_offsetof] = ACTIONS(1166), - [anon_sym__Generic] = ACTIONS(1166), - [anon_sym_asm] = ACTIONS(1166), - [anon_sym___asm__] = ACTIONS(1166), - [anon_sym___asm] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [anon_sym_NULL] = ACTIONS(1166), - [anon_sym_nullptr] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [201] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token2] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym___extension__] = ACTIONS(1178), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym___attribute] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), - [anon_sym___declspec] = ACTIONS(1178), - [anon_sym___cdecl] = ACTIONS(1178), - [anon_sym___clrcall] = ACTIONS(1178), - [anon_sym___stdcall] = ACTIONS(1178), - [anon_sym___fastcall] = ACTIONS(1178), - [anon_sym___thiscall] = ACTIONS(1178), - [anon_sym___vectorcall] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym___inline] = ACTIONS(1178), - [anon_sym___inline__] = ACTIONS(1178), - [anon_sym___forceinline] = ACTIONS(1178), - [anon_sym_thread_local] = ACTIONS(1178), - [anon_sym___thread] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_constexpr] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym___restrict__] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym__Noreturn] = ACTIONS(1178), - [anon_sym_noreturn] = ACTIONS(1178), - [anon_sym__Nonnull] = ACTIONS(1178), - [anon_sym_alignas] = ACTIONS(1178), - [anon_sym__Alignas] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym___try] = ACTIONS(1178), - [anon_sym___leave] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [anon_sym___alignof__] = ACTIONS(1178), - [anon_sym___alignof] = ACTIONS(1178), - [anon_sym__alignof] = ACTIONS(1178), - [anon_sym_alignof] = ACTIONS(1178), - [anon_sym__Alignof] = ACTIONS(1178), - [anon_sym_offsetof] = ACTIONS(1178), - [anon_sym__Generic] = ACTIONS(1178), - [anon_sym_asm] = ACTIONS(1178), - [anon_sym___asm__] = ACTIONS(1178), - [anon_sym___asm] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [anon_sym_NULL] = ACTIONS(1178), - [anon_sym_nullptr] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - }, - [203] = { - [sym_identifier] = ACTIONS(1182), - [aux_sym_preproc_include_token1] = ACTIONS(1182), - [aux_sym_preproc_def_token1] = ACTIONS(1182), - [aux_sym_preproc_if_token1] = ACTIONS(1182), - [aux_sym_preproc_if_token2] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), - [sym_preproc_directive] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym___extension__] = ACTIONS(1182), - [anon_sym_typedef] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1182), - [anon_sym___attribute__] = ACTIONS(1182), - [anon_sym___attribute] = ACTIONS(1182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1184), - [anon_sym___declspec] = ACTIONS(1182), - [anon_sym___cdecl] = ACTIONS(1182), - [anon_sym___clrcall] = ACTIONS(1182), - [anon_sym___stdcall] = ACTIONS(1182), - [anon_sym___fastcall] = ACTIONS(1182), - [anon_sym___thiscall] = ACTIONS(1182), - [anon_sym___vectorcall] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_signed] = ACTIONS(1182), - [anon_sym_unsigned] = ACTIONS(1182), - [anon_sym_long] = ACTIONS(1182), - [anon_sym_short] = ACTIONS(1182), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_auto] = ACTIONS(1182), - [anon_sym_register] = ACTIONS(1182), - [anon_sym_inline] = ACTIONS(1182), - [anon_sym___inline] = ACTIONS(1182), - [anon_sym___inline__] = ACTIONS(1182), - [anon_sym___forceinline] = ACTIONS(1182), - [anon_sym_thread_local] = ACTIONS(1182), - [anon_sym___thread] = ACTIONS(1182), - [anon_sym_const] = ACTIONS(1182), - [anon_sym_constexpr] = ACTIONS(1182), - [anon_sym_volatile] = ACTIONS(1182), - [anon_sym_restrict] = ACTIONS(1182), - [anon_sym___restrict__] = ACTIONS(1182), - [anon_sym__Atomic] = ACTIONS(1182), - [anon_sym__Noreturn] = ACTIONS(1182), - [anon_sym_noreturn] = ACTIONS(1182), - [anon_sym__Nonnull] = ACTIONS(1182), - [anon_sym_alignas] = ACTIONS(1182), - [anon_sym__Alignas] = ACTIONS(1182), - [sym_primitive_type] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1182), - [anon_sym_struct] = ACTIONS(1182), - [anon_sym_union] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_else] = ACTIONS(1182), - [anon_sym_switch] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1182), - [anon_sym_default] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1182), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1182), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1182), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_goto] = ACTIONS(1182), - [anon_sym___try] = ACTIONS(1182), - [anon_sym___leave] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_sizeof] = ACTIONS(1182), - [anon_sym___alignof__] = ACTIONS(1182), - [anon_sym___alignof] = ACTIONS(1182), - [anon_sym__alignof] = ACTIONS(1182), - [anon_sym_alignof] = ACTIONS(1182), - [anon_sym__Alignof] = ACTIONS(1182), - [anon_sym_offsetof] = ACTIONS(1182), - [anon_sym__Generic] = ACTIONS(1182), - [anon_sym_asm] = ACTIONS(1182), - [anon_sym___asm__] = ACTIONS(1182), - [anon_sym___asm] = ACTIONS(1182), - [sym_number_literal] = ACTIONS(1184), - [anon_sym_L_SQUOTE] = ACTIONS(1184), - [anon_sym_u_SQUOTE] = ACTIONS(1184), - [anon_sym_U_SQUOTE] = ACTIONS(1184), - [anon_sym_u8_SQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_L_DQUOTE] = ACTIONS(1184), - [anon_sym_u_DQUOTE] = ACTIONS(1184), - [anon_sym_U_DQUOTE] = ACTIONS(1184), - [anon_sym_u8_DQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_true] = ACTIONS(1182), - [sym_false] = ACTIONS(1182), - [anon_sym_NULL] = ACTIONS(1182), - [anon_sym_nullptr] = ACTIONS(1182), - [sym_comment] = ACTIONS(3), - }, - [204] = { - [sym_identifier] = ACTIONS(1134), - [aux_sym_preproc_include_token1] = ACTIONS(1134), - [aux_sym_preproc_def_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token2] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), - [sym_preproc_directive] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym___extension__] = ACTIONS(1134), - [anon_sym_typedef] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym___attribute__] = ACTIONS(1134), - [anon_sym___attribute] = ACTIONS(1134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym___declspec] = ACTIONS(1134), - [anon_sym___cdecl] = ACTIONS(1134), - [anon_sym___clrcall] = ACTIONS(1134), - [anon_sym___stdcall] = ACTIONS(1134), - [anon_sym___fastcall] = ACTIONS(1134), - [anon_sym___thiscall] = ACTIONS(1134), - [anon_sym___vectorcall] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym___inline] = ACTIONS(1134), - [anon_sym___inline__] = ACTIONS(1134), - [anon_sym___forceinline] = ACTIONS(1134), - [anon_sym_thread_local] = ACTIONS(1134), - [anon_sym___thread] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_constexpr] = ACTIONS(1134), - [anon_sym_volatile] = ACTIONS(1134), - [anon_sym_restrict] = ACTIONS(1134), - [anon_sym___restrict__] = ACTIONS(1134), - [anon_sym__Atomic] = ACTIONS(1134), - [anon_sym__Noreturn] = ACTIONS(1134), - [anon_sym_noreturn] = ACTIONS(1134), - [anon_sym__Nonnull] = ACTIONS(1134), - [anon_sym_alignas] = ACTIONS(1134), - [anon_sym__Alignas] = ACTIONS(1134), - [sym_primitive_type] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_else] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_goto] = ACTIONS(1134), - [anon_sym___try] = ACTIONS(1134), - [anon_sym___leave] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym___alignof__] = ACTIONS(1134), - [anon_sym___alignof] = ACTIONS(1134), - [anon_sym__alignof] = ACTIONS(1134), - [anon_sym_alignof] = ACTIONS(1134), - [anon_sym__Alignof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = ACTIONS(1134), - [anon_sym_asm] = ACTIONS(1134), - [anon_sym___asm__] = ACTIONS(1134), - [anon_sym___asm] = ACTIONS(1134), - [sym_number_literal] = ACTIONS(1136), - [anon_sym_L_SQUOTE] = ACTIONS(1136), - [anon_sym_u_SQUOTE] = ACTIONS(1136), - [anon_sym_U_SQUOTE] = ACTIONS(1136), - [anon_sym_u8_SQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_L_DQUOTE] = ACTIONS(1136), - [anon_sym_u_DQUOTE] = ACTIONS(1136), - [anon_sym_U_DQUOTE] = ACTIONS(1136), - [anon_sym_u8_DQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_true] = ACTIONS(1134), - [sym_false] = ACTIONS(1134), - [anon_sym_NULL] = ACTIONS(1134), - [anon_sym_nullptr] = ACTIONS(1134), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(1186), - [aux_sym_preproc_include_token1] = ACTIONS(1186), - [aux_sym_preproc_def_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token2] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), - [sym_preproc_directive] = ACTIONS(1186), - [anon_sym_LPAREN2] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym___extension__] = ACTIONS(1186), - [anon_sym_typedef] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym___attribute__] = ACTIONS(1186), - [anon_sym___attribute] = ACTIONS(1186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), - [anon_sym___declspec] = ACTIONS(1186), - [anon_sym___cdecl] = ACTIONS(1186), - [anon_sym___clrcall] = ACTIONS(1186), - [anon_sym___stdcall] = ACTIONS(1186), - [anon_sym___fastcall] = ACTIONS(1186), - [anon_sym___thiscall] = ACTIONS(1186), - [anon_sym___vectorcall] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_signed] = ACTIONS(1186), - [anon_sym_unsigned] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_auto] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_inline] = ACTIONS(1186), - [anon_sym___inline] = ACTIONS(1186), - [anon_sym___inline__] = ACTIONS(1186), - [anon_sym___forceinline] = ACTIONS(1186), - [anon_sym_thread_local] = ACTIONS(1186), - [anon_sym___thread] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_constexpr] = ACTIONS(1186), - [anon_sym_volatile] = ACTIONS(1186), - [anon_sym_restrict] = ACTIONS(1186), - [anon_sym___restrict__] = ACTIONS(1186), - [anon_sym__Atomic] = ACTIONS(1186), - [anon_sym__Noreturn] = ACTIONS(1186), - [anon_sym_noreturn] = ACTIONS(1186), - [anon_sym__Nonnull] = ACTIONS(1186), - [anon_sym_alignas] = ACTIONS(1186), - [anon_sym__Alignas] = ACTIONS(1186), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1186), - [anon_sym___try] = ACTIONS(1186), - [anon_sym___leave] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_sizeof] = ACTIONS(1186), - [anon_sym___alignof__] = ACTIONS(1186), - [anon_sym___alignof] = ACTIONS(1186), - [anon_sym__alignof] = ACTIONS(1186), - [anon_sym_alignof] = ACTIONS(1186), - [anon_sym__Alignof] = ACTIONS(1186), - [anon_sym_offsetof] = ACTIONS(1186), - [anon_sym__Generic] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym___asm__] = ACTIONS(1186), - [anon_sym___asm] = ACTIONS(1186), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(1188), - [anon_sym_u_SQUOTE] = ACTIONS(1188), - [anon_sym_U_SQUOTE] = ACTIONS(1188), - [anon_sym_u8_SQUOTE] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_L_DQUOTE] = ACTIONS(1188), - [anon_sym_u_DQUOTE] = ACTIONS(1188), - [anon_sym_U_DQUOTE] = ACTIONS(1188), - [anon_sym_u8_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_true] = ACTIONS(1186), - [sym_false] = ACTIONS(1186), - [anon_sym_NULL] = ACTIONS(1186), - [anon_sym_nullptr] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - }, - [206] = { - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token2] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym___extension__] = ACTIONS(1190), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym___attribute] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym___inline] = ACTIONS(1190), - [anon_sym___inline__] = ACTIONS(1190), - [anon_sym___forceinline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym___thread] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym__Nonnull] = ACTIONS(1190), - [anon_sym_alignas] = ACTIONS(1190), - [anon_sym__Alignas] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym___alignof__] = ACTIONS(1190), - [anon_sym___alignof] = ACTIONS(1190), - [anon_sym__alignof] = ACTIONS(1190), - [anon_sym_alignof] = ACTIONS(1190), - [anon_sym__Alignof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [anon_sym___asm] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [207] = { - [sym_identifier] = ACTIONS(1134), - [aux_sym_preproc_include_token1] = ACTIONS(1134), - [aux_sym_preproc_def_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), - [sym_preproc_directive] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym___extension__] = ACTIONS(1134), - [anon_sym_typedef] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym___attribute__] = ACTIONS(1134), - [anon_sym___attribute] = ACTIONS(1134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym___declspec] = ACTIONS(1134), - [anon_sym___cdecl] = ACTIONS(1134), - [anon_sym___clrcall] = ACTIONS(1134), - [anon_sym___stdcall] = ACTIONS(1134), - [anon_sym___fastcall] = ACTIONS(1134), - [anon_sym___thiscall] = ACTIONS(1134), - [anon_sym___vectorcall] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym___inline] = ACTIONS(1134), - [anon_sym___inline__] = ACTIONS(1134), - [anon_sym___forceinline] = ACTIONS(1134), - [anon_sym_thread_local] = ACTIONS(1134), - [anon_sym___thread] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_constexpr] = ACTIONS(1134), - [anon_sym_volatile] = ACTIONS(1134), - [anon_sym_restrict] = ACTIONS(1134), - [anon_sym___restrict__] = ACTIONS(1134), - [anon_sym__Atomic] = ACTIONS(1134), - [anon_sym__Noreturn] = ACTIONS(1134), - [anon_sym_noreturn] = ACTIONS(1134), - [anon_sym__Nonnull] = ACTIONS(1134), - [anon_sym_alignas] = ACTIONS(1134), - [anon_sym__Alignas] = ACTIONS(1134), - [sym_primitive_type] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_else] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_goto] = ACTIONS(1134), - [anon_sym___try] = ACTIONS(1134), - [anon_sym___leave] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym___alignof__] = ACTIONS(1134), - [anon_sym___alignof] = ACTIONS(1134), - [anon_sym__alignof] = ACTIONS(1134), - [anon_sym_alignof] = ACTIONS(1134), - [anon_sym__Alignof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = ACTIONS(1134), - [anon_sym_asm] = ACTIONS(1134), - [anon_sym___asm__] = ACTIONS(1134), - [anon_sym___asm] = ACTIONS(1134), - [sym_number_literal] = ACTIONS(1136), - [anon_sym_L_SQUOTE] = ACTIONS(1136), - [anon_sym_u_SQUOTE] = ACTIONS(1136), - [anon_sym_U_SQUOTE] = ACTIONS(1136), - [anon_sym_u8_SQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_L_DQUOTE] = ACTIONS(1136), - [anon_sym_u_DQUOTE] = ACTIONS(1136), - [anon_sym_U_DQUOTE] = ACTIONS(1136), - [anon_sym_u8_DQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_true] = ACTIONS(1134), - [sym_false] = ACTIONS(1134), - [anon_sym_NULL] = ACTIONS(1134), - [anon_sym_nullptr] = ACTIONS(1134), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [sym_identifier] = ACTIONS(1206), - [aux_sym_preproc_include_token1] = ACTIONS(1206), - [aux_sym_preproc_def_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token1] = ACTIONS(1206), - [aux_sym_preproc_if_token2] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), - [sym_preproc_directive] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym___extension__] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym___attribute__] = ACTIONS(1206), - [anon_sym___attribute] = ACTIONS(1206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1208), - [anon_sym___declspec] = ACTIONS(1206), - [anon_sym___cdecl] = ACTIONS(1206), - [anon_sym___clrcall] = ACTIONS(1206), - [anon_sym___stdcall] = ACTIONS(1206), - [anon_sym___fastcall] = ACTIONS(1206), - [anon_sym___thiscall] = ACTIONS(1206), - [anon_sym___vectorcall] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_signed] = ACTIONS(1206), - [anon_sym_unsigned] = ACTIONS(1206), - [anon_sym_long] = ACTIONS(1206), - [anon_sym_short] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_auto] = ACTIONS(1206), - [anon_sym_register] = ACTIONS(1206), - [anon_sym_inline] = ACTIONS(1206), - [anon_sym___inline] = ACTIONS(1206), - [anon_sym___inline__] = ACTIONS(1206), - [anon_sym___forceinline] = ACTIONS(1206), - [anon_sym_thread_local] = ACTIONS(1206), - [anon_sym___thread] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_constexpr] = ACTIONS(1206), - [anon_sym_volatile] = ACTIONS(1206), - [anon_sym_restrict] = ACTIONS(1206), - [anon_sym___restrict__] = ACTIONS(1206), - [anon_sym__Atomic] = ACTIONS(1206), - [anon_sym__Noreturn] = ACTIONS(1206), - [anon_sym_noreturn] = ACTIONS(1206), - [anon_sym__Nonnull] = ACTIONS(1206), - [anon_sym_alignas] = ACTIONS(1206), - [anon_sym__Alignas] = ACTIONS(1206), - [sym_primitive_type] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_union] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_switch] = ACTIONS(1206), - [anon_sym_case] = ACTIONS(1206), - [anon_sym_default] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_do] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_goto] = ACTIONS(1206), - [anon_sym___try] = ACTIONS(1206), - [anon_sym___leave] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_sizeof] = ACTIONS(1206), - [anon_sym___alignof__] = ACTIONS(1206), - [anon_sym___alignof] = ACTIONS(1206), - [anon_sym__alignof] = ACTIONS(1206), - [anon_sym_alignof] = ACTIONS(1206), - [anon_sym__Alignof] = ACTIONS(1206), - [anon_sym_offsetof] = ACTIONS(1206), - [anon_sym__Generic] = ACTIONS(1206), - [anon_sym_asm] = ACTIONS(1206), - [anon_sym___asm__] = ACTIONS(1206), - [anon_sym___asm] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(1208), - [anon_sym_L_SQUOTE] = ACTIONS(1208), - [anon_sym_u_SQUOTE] = ACTIONS(1208), - [anon_sym_U_SQUOTE] = ACTIONS(1208), - [anon_sym_u8_SQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_L_DQUOTE] = ACTIONS(1208), - [anon_sym_u_DQUOTE] = ACTIONS(1208), - [anon_sym_U_DQUOTE] = ACTIONS(1208), - [anon_sym_u8_DQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [anon_sym_NULL] = ACTIONS(1206), - [anon_sym_nullptr] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - }, - [209] = { - [sym_identifier] = ACTIONS(1210), - [aux_sym_preproc_include_token1] = ACTIONS(1210), - [aux_sym_preproc_def_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token1] = ACTIONS(1210), - [aux_sym_preproc_if_token2] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1210), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1210), - [sym_preproc_directive] = ACTIONS(1210), - [anon_sym_LPAREN2] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym___extension__] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym___attribute__] = ACTIONS(1210), - [anon_sym___attribute] = ACTIONS(1210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1212), - [anon_sym___declspec] = ACTIONS(1210), - [anon_sym___cdecl] = ACTIONS(1210), - [anon_sym___clrcall] = ACTIONS(1210), - [anon_sym___stdcall] = ACTIONS(1210), - [anon_sym___fastcall] = ACTIONS(1210), - [anon_sym___thiscall] = ACTIONS(1210), - [anon_sym___vectorcall] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_signed] = ACTIONS(1210), - [anon_sym_unsigned] = ACTIONS(1210), - [anon_sym_long] = ACTIONS(1210), - [anon_sym_short] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_auto] = ACTIONS(1210), - [anon_sym_register] = ACTIONS(1210), - [anon_sym_inline] = ACTIONS(1210), - [anon_sym___inline] = ACTIONS(1210), - [anon_sym___inline__] = ACTIONS(1210), - [anon_sym___forceinline] = ACTIONS(1210), - [anon_sym_thread_local] = ACTIONS(1210), - [anon_sym___thread] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_constexpr] = ACTIONS(1210), - [anon_sym_volatile] = ACTIONS(1210), - [anon_sym_restrict] = ACTIONS(1210), - [anon_sym___restrict__] = ACTIONS(1210), - [anon_sym__Atomic] = ACTIONS(1210), - [anon_sym__Noreturn] = ACTIONS(1210), - [anon_sym_noreturn] = ACTIONS(1210), - [anon_sym__Nonnull] = ACTIONS(1210), - [anon_sym_alignas] = ACTIONS(1210), - [anon_sym__Alignas] = ACTIONS(1210), - [sym_primitive_type] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1210), - [anon_sym___try] = ACTIONS(1210), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1210), - [anon_sym___alignof__] = ACTIONS(1210), - [anon_sym___alignof] = ACTIONS(1210), - [anon_sym__alignof] = ACTIONS(1210), - [anon_sym_alignof] = ACTIONS(1210), - [anon_sym__Alignof] = ACTIONS(1210), - [anon_sym_offsetof] = ACTIONS(1210), - [anon_sym__Generic] = ACTIONS(1210), - [anon_sym_asm] = ACTIONS(1210), - [anon_sym___asm__] = ACTIONS(1210), - [anon_sym___asm] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_L_SQUOTE] = ACTIONS(1212), - [anon_sym_u_SQUOTE] = ACTIONS(1212), - [anon_sym_U_SQUOTE] = ACTIONS(1212), - [anon_sym_u8_SQUOTE] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_L_DQUOTE] = ACTIONS(1212), - [anon_sym_u_DQUOTE] = ACTIONS(1212), - [anon_sym_U_DQUOTE] = ACTIONS(1212), - [anon_sym_u8_DQUOTE] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_true] = ACTIONS(1210), - [sym_false] = ACTIONS(1210), - [anon_sym_NULL] = ACTIONS(1210), - [anon_sym_nullptr] = ACTIONS(1210), - [sym_comment] = ACTIONS(3), - }, - [210] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token2] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [213] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token2] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token2] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token2] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(1198), - [aux_sym_preproc_include_token1] = ACTIONS(1198), - [aux_sym_preproc_def_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token2] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), - [sym_preproc_directive] = ACTIONS(1198), - [anon_sym_LPAREN2] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym___extension__] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym___attribute__] = ACTIONS(1198), - [anon_sym___attribute] = ACTIONS(1198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), - [anon_sym___declspec] = ACTIONS(1198), - [anon_sym___cdecl] = ACTIONS(1198), - [anon_sym___clrcall] = ACTIONS(1198), - [anon_sym___stdcall] = ACTIONS(1198), - [anon_sym___fastcall] = ACTIONS(1198), - [anon_sym___thiscall] = ACTIONS(1198), - [anon_sym___vectorcall] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_auto] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_inline] = ACTIONS(1198), - [anon_sym___inline] = ACTIONS(1198), - [anon_sym___inline__] = ACTIONS(1198), - [anon_sym___forceinline] = ACTIONS(1198), - [anon_sym_thread_local] = ACTIONS(1198), - [anon_sym___thread] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_constexpr] = ACTIONS(1198), - [anon_sym_volatile] = ACTIONS(1198), - [anon_sym_restrict] = ACTIONS(1198), - [anon_sym___restrict__] = ACTIONS(1198), - [anon_sym__Atomic] = ACTIONS(1198), - [anon_sym__Noreturn] = ACTIONS(1198), - [anon_sym_noreturn] = ACTIONS(1198), - [anon_sym__Nonnull] = ACTIONS(1198), - [anon_sym_alignas] = ACTIONS(1198), - [anon_sym__Alignas] = ACTIONS(1198), - [sym_primitive_type] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_switch] = ACTIONS(1198), - [anon_sym_case] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_goto] = ACTIONS(1198), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_sizeof] = ACTIONS(1198), - [anon_sym___alignof__] = ACTIONS(1198), - [anon_sym___alignof] = ACTIONS(1198), - [anon_sym__alignof] = ACTIONS(1198), - [anon_sym_alignof] = ACTIONS(1198), - [anon_sym__Alignof] = ACTIONS(1198), - [anon_sym_offsetof] = ACTIONS(1198), - [anon_sym__Generic] = ACTIONS(1198), - [anon_sym_asm] = ACTIONS(1198), - [anon_sym___asm__] = ACTIONS(1198), - [anon_sym___asm] = ACTIONS(1198), - [sym_number_literal] = ACTIONS(1200), - [anon_sym_L_SQUOTE] = ACTIONS(1200), - [anon_sym_u_SQUOTE] = ACTIONS(1200), - [anon_sym_U_SQUOTE] = ACTIONS(1200), - [anon_sym_u8_SQUOTE] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_L_DQUOTE] = ACTIONS(1200), - [anon_sym_u_DQUOTE] = ACTIONS(1200), - [anon_sym_U_DQUOTE] = ACTIONS(1200), - [anon_sym_u8_DQUOTE] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_true] = ACTIONS(1198), - [sym_false] = ACTIONS(1198), - [anon_sym_NULL] = ACTIONS(1198), - [anon_sym_nullptr] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token2] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [sym_identifier] = ACTIONS(1202), - [aux_sym_preproc_include_token1] = ACTIONS(1202), - [aux_sym_preproc_def_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token1] = ACTIONS(1202), - [aux_sym_preproc_if_token2] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym___extension__] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym___attribute__] = ACTIONS(1202), - [anon_sym___attribute] = ACTIONS(1202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1204), - [anon_sym___declspec] = ACTIONS(1202), - [anon_sym___cdecl] = ACTIONS(1202), - [anon_sym___clrcall] = ACTIONS(1202), - [anon_sym___stdcall] = ACTIONS(1202), - [anon_sym___fastcall] = ACTIONS(1202), - [anon_sym___thiscall] = ACTIONS(1202), - [anon_sym___vectorcall] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_signed] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym___inline] = ACTIONS(1202), - [anon_sym___inline__] = ACTIONS(1202), - [anon_sym___forceinline] = ACTIONS(1202), - [anon_sym_thread_local] = ACTIONS(1202), - [anon_sym___thread] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_constexpr] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym___restrict__] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym__Noreturn] = ACTIONS(1202), - [anon_sym_noreturn] = ACTIONS(1202), - [anon_sym__Nonnull] = ACTIONS(1202), - [anon_sym_alignas] = ACTIONS(1202), - [anon_sym__Alignas] = ACTIONS(1202), - [sym_primitive_type] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym___try] = ACTIONS(1202), - [anon_sym___leave] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym___alignof__] = ACTIONS(1202), - [anon_sym___alignof] = ACTIONS(1202), - [anon_sym__alignof] = ACTIONS(1202), - [anon_sym_alignof] = ACTIONS(1202), - [anon_sym__Alignof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1202), - [anon_sym__Generic] = ACTIONS(1202), - [anon_sym_asm] = ACTIONS(1202), - [anon_sym___asm__] = ACTIONS(1202), - [anon_sym___asm] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1204), - [anon_sym_L_SQUOTE] = ACTIONS(1204), - [anon_sym_u_SQUOTE] = ACTIONS(1204), - [anon_sym_U_SQUOTE] = ACTIONS(1204), - [anon_sym_u8_SQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_L_DQUOTE] = ACTIONS(1204), - [anon_sym_u_DQUOTE] = ACTIONS(1204), - [anon_sym_U_DQUOTE] = ACTIONS(1204), - [anon_sym_u8_DQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_true] = ACTIONS(1202), - [sym_false] = ACTIONS(1202), - [anon_sym_NULL] = ACTIONS(1202), - [anon_sym_nullptr] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(1214), - [aux_sym_preproc_include_token1] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token2] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [anon_sym___attribute] = ACTIONS(1214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), - [anon_sym___declspec] = ACTIONS(1214), - [anon_sym___cdecl] = ACTIONS(1214), - [anon_sym___clrcall] = ACTIONS(1214), - [anon_sym___stdcall] = ACTIONS(1214), - [anon_sym___fastcall] = ACTIONS(1214), - [anon_sym___thiscall] = ACTIONS(1214), - [anon_sym___vectorcall] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___inline] = ACTIONS(1214), - [anon_sym___inline__] = ACTIONS(1214), - [anon_sym___forceinline] = ACTIONS(1214), - [anon_sym_thread_local] = ACTIONS(1214), - [anon_sym___thread] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_constexpr] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym___restrict__] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym__Noreturn] = ACTIONS(1214), - [anon_sym_noreturn] = ACTIONS(1214), - [anon_sym__Nonnull] = ACTIONS(1214), - [anon_sym_alignas] = ACTIONS(1214), - [anon_sym__Alignas] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym___try] = ACTIONS(1214), - [anon_sym___leave] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_sizeof] = ACTIONS(1214), - [anon_sym___alignof__] = ACTIONS(1214), - [anon_sym___alignof] = ACTIONS(1214), - [anon_sym__alignof] = ACTIONS(1214), - [anon_sym_alignof] = ACTIONS(1214), - [anon_sym__Alignof] = ACTIONS(1214), - [anon_sym_offsetof] = ACTIONS(1214), - [anon_sym__Generic] = ACTIONS(1214), - [anon_sym_asm] = ACTIONS(1214), - [anon_sym___asm__] = ACTIONS(1214), - [anon_sym___asm] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1216), - [anon_sym_L_SQUOTE] = ACTIONS(1216), - [anon_sym_u_SQUOTE] = ACTIONS(1216), - [anon_sym_U_SQUOTE] = ACTIONS(1216), - [anon_sym_u8_SQUOTE] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_L_DQUOTE] = ACTIONS(1216), - [anon_sym_u_DQUOTE] = ACTIONS(1216), - [anon_sym_U_DQUOTE] = ACTIONS(1216), - [anon_sym_u8_DQUOTE] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [anon_sym_NULL] = ACTIONS(1214), - [anon_sym_nullptr] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1254), - [aux_sym_preproc_include_token1] = ACTIONS(1254), - [aux_sym_preproc_def_token1] = ACTIONS(1254), - [aux_sym_preproc_if_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), - [sym_preproc_directive] = ACTIONS(1254), - [anon_sym_LPAREN2] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym___extension__] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym___attribute__] = ACTIONS(1254), - [anon_sym___attribute] = ACTIONS(1254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1256), - [anon_sym___declspec] = ACTIONS(1254), - [anon_sym___cdecl] = ACTIONS(1254), - [anon_sym___clrcall] = ACTIONS(1254), - [anon_sym___stdcall] = ACTIONS(1254), - [anon_sym___fastcall] = ACTIONS(1254), - [anon_sym___thiscall] = ACTIONS(1254), - [anon_sym___vectorcall] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_signed] = ACTIONS(1254), - [anon_sym_unsigned] = ACTIONS(1254), - [anon_sym_long] = ACTIONS(1254), - [anon_sym_short] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_auto] = ACTIONS(1254), - [anon_sym_register] = ACTIONS(1254), - [anon_sym_inline] = ACTIONS(1254), - [anon_sym___inline] = ACTIONS(1254), - [anon_sym___inline__] = ACTIONS(1254), - [anon_sym___forceinline] = ACTIONS(1254), - [anon_sym_thread_local] = ACTIONS(1254), - [anon_sym___thread] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_constexpr] = ACTIONS(1254), - [anon_sym_volatile] = ACTIONS(1254), - [anon_sym_restrict] = ACTIONS(1254), - [anon_sym___restrict__] = ACTIONS(1254), - [anon_sym__Atomic] = ACTIONS(1254), - [anon_sym__Noreturn] = ACTIONS(1254), - [anon_sym_noreturn] = ACTIONS(1254), - [anon_sym__Nonnull] = ACTIONS(1254), - [anon_sym_alignas] = ACTIONS(1254), - [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_case] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(97)] = { + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(95), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [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(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [aux_sym_case_statement_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(799), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(98)] = { + [sym_declaration] = STATE(267), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1444), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(512), + [sym_ms_declspec_modifier] = STATE(922), + [sym_compound_statement] = STATE(249), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(267), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(1252), [anon_sym_default] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_goto] = ACTIONS(1254), - [anon_sym___try] = ACTIONS(1254), - [anon_sym___leave] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_sizeof] = ACTIONS(1254), - [anon_sym___alignof__] = ACTIONS(1254), - [anon_sym___alignof] = ACTIONS(1254), - [anon_sym__alignof] = ACTIONS(1254), - [anon_sym_alignof] = ACTIONS(1254), - [anon_sym__Alignof] = ACTIONS(1254), - [anon_sym_offsetof] = ACTIONS(1254), - [anon_sym__Generic] = ACTIONS(1254), - [anon_sym_asm] = ACTIONS(1254), - [anon_sym___asm__] = ACTIONS(1254), - [anon_sym___asm] = ACTIONS(1254), - [sym_number_literal] = ACTIONS(1256), - [anon_sym_L_SQUOTE] = ACTIONS(1256), - [anon_sym_u_SQUOTE] = ACTIONS(1256), - [anon_sym_U_SQUOTE] = ACTIONS(1256), - [anon_sym_u8_SQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_L_DQUOTE] = ACTIONS(1256), - [anon_sym_u_DQUOTE] = ACTIONS(1256), - [anon_sym_U_DQUOTE] = ACTIONS(1256), - [anon_sym_u8_DQUOTE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_true] = ACTIONS(1254), - [sym_false] = ACTIONS(1254), - [anon_sym_NULL] = ACTIONS(1254), - [anon_sym_nullptr] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym___extension__] = ACTIONS(1158), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym___attribute__] = ACTIONS(1158), - [anon_sym___attribute] = ACTIONS(1158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(1158), - [anon_sym___cdecl] = ACTIONS(1158), - [anon_sym___clrcall] = ACTIONS(1158), - [anon_sym___stdcall] = ACTIONS(1158), - [anon_sym___fastcall] = ACTIONS(1158), - [anon_sym___thiscall] = ACTIONS(1158), - [anon_sym___vectorcall] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym_signed] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_inline] = ACTIONS(1158), - [anon_sym___inline] = ACTIONS(1158), - [anon_sym___inline__] = ACTIONS(1158), - [anon_sym___forceinline] = ACTIONS(1158), - [anon_sym_thread_local] = ACTIONS(1158), - [anon_sym___thread] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_constexpr] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym___restrict__] = ACTIONS(1158), - [anon_sym__Atomic] = ACTIONS(1158), - [anon_sym__Noreturn] = ACTIONS(1158), - [anon_sym_noreturn] = ACTIONS(1158), - [anon_sym__Nonnull] = ACTIONS(1158), - [anon_sym_alignas] = ACTIONS(1158), - [anon_sym__Alignas] = ACTIONS(1158), - [sym_primitive_type] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym___try] = ACTIONS(1158), - [anon_sym___leave] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_sizeof] = ACTIONS(1158), - [anon_sym___alignof__] = ACTIONS(1158), - [anon_sym___alignof] = ACTIONS(1158), - [anon_sym__alignof] = ACTIONS(1158), - [anon_sym_alignof] = ACTIONS(1158), - [anon_sym__Alignof] = ACTIONS(1158), - [anon_sym_offsetof] = ACTIONS(1158), - [anon_sym__Generic] = ACTIONS(1158), - [anon_sym_asm] = ACTIONS(1158), - [anon_sym___asm__] = ACTIONS(1158), - [anon_sym___asm] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1160), - [anon_sym_L_SQUOTE] = ACTIONS(1160), - [anon_sym_u_SQUOTE] = ACTIONS(1160), - [anon_sym_U_SQUOTE] = ACTIONS(1160), - [anon_sym_u8_SQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_L_DQUOTE] = ACTIONS(1160), - [anon_sym_u_DQUOTE] = ACTIONS(1160), - [anon_sym_U_DQUOTE] = ACTIONS(1160), - [anon_sym_u8_DQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [anon_sym_NULL] = ACTIONS(1158), - [anon_sym_nullptr] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_identifier] = ACTIONS(1162), - [aux_sym_preproc_include_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), - [sym_preproc_directive] = ACTIONS(1162), - [anon_sym_LPAREN2] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym___extension__] = ACTIONS(1162), - [anon_sym_typedef] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym___attribute__] = ACTIONS(1162), - [anon_sym___attribute] = ACTIONS(1162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), - [anon_sym___declspec] = ACTIONS(1162), - [anon_sym___cdecl] = ACTIONS(1162), - [anon_sym___clrcall] = ACTIONS(1162), - [anon_sym___stdcall] = ACTIONS(1162), - [anon_sym___fastcall] = ACTIONS(1162), - [anon_sym___thiscall] = ACTIONS(1162), - [anon_sym___vectorcall] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_signed] = ACTIONS(1162), - [anon_sym_unsigned] = ACTIONS(1162), - [anon_sym_long] = ACTIONS(1162), - [anon_sym_short] = ACTIONS(1162), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_auto] = ACTIONS(1162), - [anon_sym_register] = ACTIONS(1162), - [anon_sym_inline] = ACTIONS(1162), - [anon_sym___inline] = ACTIONS(1162), - [anon_sym___inline__] = ACTIONS(1162), - [anon_sym___forceinline] = ACTIONS(1162), - [anon_sym_thread_local] = ACTIONS(1162), - [anon_sym___thread] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_constexpr] = ACTIONS(1162), - [anon_sym_volatile] = ACTIONS(1162), - [anon_sym_restrict] = ACTIONS(1162), - [anon_sym___restrict__] = ACTIONS(1162), - [anon_sym__Atomic] = ACTIONS(1162), - [anon_sym__Noreturn] = ACTIONS(1162), - [anon_sym_noreturn] = ACTIONS(1162), - [anon_sym__Nonnull] = ACTIONS(1162), - [anon_sym_alignas] = ACTIONS(1162), - [anon_sym__Alignas] = ACTIONS(1162), - [sym_primitive_type] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_else] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_do] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_goto] = ACTIONS(1162), - [anon_sym___try] = ACTIONS(1162), - [anon_sym___leave] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_sizeof] = ACTIONS(1162), - [anon_sym___alignof__] = ACTIONS(1162), - [anon_sym___alignof] = ACTIONS(1162), - [anon_sym__alignof] = ACTIONS(1162), - [anon_sym_alignof] = ACTIONS(1162), - [anon_sym__Alignof] = ACTIONS(1162), - [anon_sym_offsetof] = ACTIONS(1162), - [anon_sym__Generic] = ACTIONS(1162), - [anon_sym_asm] = ACTIONS(1162), - [anon_sym___asm__] = ACTIONS(1162), - [anon_sym___asm] = ACTIONS(1162), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_L_SQUOTE] = ACTIONS(1164), - [anon_sym_u_SQUOTE] = ACTIONS(1164), - [anon_sym_U_SQUOTE] = ACTIONS(1164), - [anon_sym_u8_SQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_L_DQUOTE] = ACTIONS(1164), - [anon_sym_u_DQUOTE] = ACTIONS(1164), - [anon_sym_U_DQUOTE] = ACTIONS(1164), - [anon_sym_u8_DQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_true] = ACTIONS(1162), - [sym_false] = ACTIONS(1162), - [anon_sym_NULL] = ACTIONS(1162), - [anon_sym_nullptr] = ACTIONS(1162), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym___attribute] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym___declspec] = ACTIONS(1166), - [anon_sym___cdecl] = ACTIONS(1166), - [anon_sym___clrcall] = ACTIONS(1166), - [anon_sym___stdcall] = ACTIONS(1166), - [anon_sym___fastcall] = ACTIONS(1166), - [anon_sym___thiscall] = ACTIONS(1166), - [anon_sym___vectorcall] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym___inline] = ACTIONS(1166), - [anon_sym___inline__] = ACTIONS(1166), - [anon_sym___forceinline] = ACTIONS(1166), - [anon_sym_thread_local] = ACTIONS(1166), - [anon_sym___thread] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym___restrict__] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym__Noreturn] = ACTIONS(1166), - [anon_sym_noreturn] = ACTIONS(1166), - [anon_sym__Nonnull] = ACTIONS(1166), - [anon_sym_alignas] = ACTIONS(1166), - [anon_sym__Alignas] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_else] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym___try] = ACTIONS(1166), - [anon_sym___leave] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym___alignof__] = ACTIONS(1166), - [anon_sym___alignof] = ACTIONS(1166), - [anon_sym__alignof] = ACTIONS(1166), - [anon_sym_alignof] = ACTIONS(1166), - [anon_sym__Alignof] = ACTIONS(1166), - [anon_sym_offsetof] = ACTIONS(1166), - [anon_sym__Generic] = ACTIONS(1166), - [anon_sym_asm] = ACTIONS(1166), - [anon_sym___asm__] = ACTIONS(1166), - [anon_sym___asm] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [anon_sym_NULL] = ACTIONS(1166), - [anon_sym_nullptr] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym___extension__] = ACTIONS(1138), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym___attribute__] = ACTIONS(1138), - [anon_sym___attribute] = ACTIONS(1138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym___declspec] = ACTIONS(1138), - [anon_sym___cdecl] = ACTIONS(1138), - [anon_sym___clrcall] = ACTIONS(1138), - [anon_sym___stdcall] = ACTIONS(1138), - [anon_sym___fastcall] = ACTIONS(1138), - [anon_sym___thiscall] = ACTIONS(1138), - [anon_sym___vectorcall] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym___inline] = ACTIONS(1138), - [anon_sym___inline__] = ACTIONS(1138), - [anon_sym___forceinline] = ACTIONS(1138), - [anon_sym_thread_local] = ACTIONS(1138), - [anon_sym___thread] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_constexpr] = ACTIONS(1138), - [anon_sym_volatile] = ACTIONS(1138), - [anon_sym_restrict] = ACTIONS(1138), - [anon_sym___restrict__] = ACTIONS(1138), - [anon_sym__Atomic] = ACTIONS(1138), - [anon_sym__Noreturn] = ACTIONS(1138), - [anon_sym_noreturn] = ACTIONS(1138), - [anon_sym__Nonnull] = ACTIONS(1138), - [anon_sym_alignas] = ACTIONS(1138), - [anon_sym__Alignas] = ACTIONS(1138), - [sym_primitive_type] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_goto] = ACTIONS(1138), - [anon_sym___try] = ACTIONS(1138), - [anon_sym___leave] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym___alignof__] = ACTIONS(1138), - [anon_sym___alignof] = ACTIONS(1138), - [anon_sym__alignof] = ACTIONS(1138), - [anon_sym_alignof] = ACTIONS(1138), - [anon_sym__Alignof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = ACTIONS(1138), - [anon_sym_asm] = ACTIONS(1138), - [anon_sym___asm__] = ACTIONS(1138), - [anon_sym___asm] = ACTIONS(1138), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1140), - [anon_sym_u_SQUOTE] = ACTIONS(1140), - [anon_sym_U_SQUOTE] = ACTIONS(1140), - [anon_sym_u8_SQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_L_DQUOTE] = ACTIONS(1140), - [anon_sym_u_DQUOTE] = ACTIONS(1140), - [anon_sym_U_DQUOTE] = ACTIONS(1140), - [anon_sym_u8_DQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [anon_sym_NULL] = ACTIONS(1138), - [anon_sym_nullptr] = ACTIONS(1138), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1142), - [aux_sym_preproc_include_token1] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym___extension__] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1142), - [anon_sym___attribute] = ACTIONS(1142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), - [anon_sym___declspec] = ACTIONS(1142), - [anon_sym___cdecl] = ACTIONS(1142), - [anon_sym___clrcall] = ACTIONS(1142), - [anon_sym___stdcall] = ACTIONS(1142), - [anon_sym___fastcall] = ACTIONS(1142), - [anon_sym___thiscall] = ACTIONS(1142), - [anon_sym___vectorcall] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1142), - [anon_sym_unsigned] = ACTIONS(1142), - [anon_sym_long] = ACTIONS(1142), - [anon_sym_short] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_auto] = ACTIONS(1142), - [anon_sym_register] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1142), - [anon_sym___inline] = ACTIONS(1142), - [anon_sym___inline__] = ACTIONS(1142), - [anon_sym___forceinline] = ACTIONS(1142), - [anon_sym_thread_local] = ACTIONS(1142), - [anon_sym___thread] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_constexpr] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1142), - [anon_sym_restrict] = ACTIONS(1142), - [anon_sym___restrict__] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1142), - [anon_sym__Noreturn] = ACTIONS(1142), - [anon_sym_noreturn] = ACTIONS(1142), - [anon_sym__Nonnull] = ACTIONS(1142), - [anon_sym_alignas] = ACTIONS(1142), - [anon_sym__Alignas] = ACTIONS(1142), - [sym_primitive_type] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_goto] = ACTIONS(1142), - [anon_sym___try] = ACTIONS(1142), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1142), - [anon_sym___alignof__] = ACTIONS(1142), - [anon_sym___alignof] = ACTIONS(1142), - [anon_sym__alignof] = ACTIONS(1142), - [anon_sym_alignof] = ACTIONS(1142), - [anon_sym__Alignof] = ACTIONS(1142), - [anon_sym_offsetof] = ACTIONS(1142), - [anon_sym__Generic] = ACTIONS(1142), - [anon_sym_asm] = ACTIONS(1142), - [anon_sym___asm__] = ACTIONS(1142), - [anon_sym___asm] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1144), - [anon_sym_L_SQUOTE] = ACTIONS(1144), - [anon_sym_u_SQUOTE] = ACTIONS(1144), - [anon_sym_U_SQUOTE] = ACTIONS(1144), - [anon_sym_u8_SQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_L_DQUOTE] = ACTIONS(1144), - [anon_sym_u_DQUOTE] = ACTIONS(1144), - [anon_sym_U_DQUOTE] = ACTIONS(1144), - [anon_sym_u8_DQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [sym_true] = ACTIONS(1142), - [sym_false] = ACTIONS(1142), - [anon_sym_NULL] = ACTIONS(1142), - [anon_sym_nullptr] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1148), - [sym_identifier] = ACTIONS(1146), - [aux_sym_preproc_include_token1] = ACTIONS(1146), - [aux_sym_preproc_def_token1] = ACTIONS(1146), - [aux_sym_preproc_if_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1146), - [sym_preproc_directive] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym___extension__] = ACTIONS(1146), - [anon_sym_typedef] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym___attribute__] = ACTIONS(1146), - [anon_sym___attribute] = ACTIONS(1146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1148), - [anon_sym___declspec] = ACTIONS(1146), - [anon_sym___cdecl] = ACTIONS(1146), - [anon_sym___clrcall] = ACTIONS(1146), - [anon_sym___stdcall] = ACTIONS(1146), - [anon_sym___fastcall] = ACTIONS(1146), - [anon_sym___thiscall] = ACTIONS(1146), - [anon_sym___vectorcall] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_signed] = ACTIONS(1146), - [anon_sym_unsigned] = ACTIONS(1146), - [anon_sym_long] = ACTIONS(1146), - [anon_sym_short] = ACTIONS(1146), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_auto] = ACTIONS(1146), - [anon_sym_register] = ACTIONS(1146), - [anon_sym_inline] = ACTIONS(1146), - [anon_sym___inline] = ACTIONS(1146), - [anon_sym___inline__] = ACTIONS(1146), - [anon_sym___forceinline] = ACTIONS(1146), - [anon_sym_thread_local] = ACTIONS(1146), - [anon_sym___thread] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_constexpr] = ACTIONS(1146), - [anon_sym_volatile] = ACTIONS(1146), - [anon_sym_restrict] = ACTIONS(1146), - [anon_sym___restrict__] = ACTIONS(1146), - [anon_sym__Atomic] = ACTIONS(1146), - [anon_sym__Noreturn] = ACTIONS(1146), - [anon_sym_noreturn] = ACTIONS(1146), - [anon_sym__Nonnull] = ACTIONS(1146), - [anon_sym_alignas] = ACTIONS(1146), - [anon_sym__Alignas] = ACTIONS(1146), - [sym_primitive_type] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_do] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1146), - [anon_sym___leave] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_sizeof] = ACTIONS(1146), - [anon_sym___alignof__] = ACTIONS(1146), - [anon_sym___alignof] = ACTIONS(1146), - [anon_sym__alignof] = ACTIONS(1146), - [anon_sym_alignof] = ACTIONS(1146), - [anon_sym__Alignof] = ACTIONS(1146), - [anon_sym_offsetof] = ACTIONS(1146), - [anon_sym__Generic] = ACTIONS(1146), - [anon_sym_asm] = ACTIONS(1146), - [anon_sym___asm__] = ACTIONS(1146), - [anon_sym___asm] = ACTIONS(1146), - [sym_number_literal] = ACTIONS(1148), - [anon_sym_L_SQUOTE] = ACTIONS(1148), - [anon_sym_u_SQUOTE] = ACTIONS(1148), - [anon_sym_U_SQUOTE] = ACTIONS(1148), - [anon_sym_u8_SQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_L_DQUOTE] = ACTIONS(1148), - [anon_sym_u_DQUOTE] = ACTIONS(1148), - [anon_sym_U_DQUOTE] = ACTIONS(1148), - [anon_sym_u8_DQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym_true] = ACTIONS(1146), - [sym_false] = ACTIONS(1146), - [anon_sym_NULL] = ACTIONS(1146), - [anon_sym_nullptr] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1152), - [sym_identifier] = ACTIONS(1150), - [aux_sym_preproc_include_token1] = ACTIONS(1150), - [aux_sym_preproc_def_token1] = ACTIONS(1150), - [aux_sym_preproc_if_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1150), - [sym_preproc_directive] = ACTIONS(1150), - [anon_sym_LPAREN2] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1150), - [anon_sym_typedef] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym___attribute] = ACTIONS(1150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1152), - [anon_sym___declspec] = ACTIONS(1150), - [anon_sym___cdecl] = ACTIONS(1150), - [anon_sym___clrcall] = ACTIONS(1150), - [anon_sym___stdcall] = ACTIONS(1150), - [anon_sym___fastcall] = ACTIONS(1150), - [anon_sym___thiscall] = ACTIONS(1150), - [anon_sym___vectorcall] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_signed] = ACTIONS(1150), - [anon_sym_unsigned] = ACTIONS(1150), - [anon_sym_long] = ACTIONS(1150), - [anon_sym_short] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_auto] = ACTIONS(1150), - [anon_sym_register] = ACTIONS(1150), - [anon_sym_inline] = ACTIONS(1150), - [anon_sym___inline] = ACTIONS(1150), - [anon_sym___inline__] = ACTIONS(1150), - [anon_sym___forceinline] = ACTIONS(1150), - [anon_sym_thread_local] = ACTIONS(1150), - [anon_sym___thread] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_constexpr] = ACTIONS(1150), - [anon_sym_volatile] = ACTIONS(1150), - [anon_sym_restrict] = ACTIONS(1150), - [anon_sym___restrict__] = ACTIONS(1150), - [anon_sym__Atomic] = ACTIONS(1150), - [anon_sym__Noreturn] = ACTIONS(1150), - [anon_sym_noreturn] = ACTIONS(1150), - [anon_sym__Nonnull] = ACTIONS(1150), - [anon_sym_alignas] = ACTIONS(1150), - [anon_sym__Alignas] = ACTIONS(1150), - [sym_primitive_type] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1150), - [anon_sym___leave] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_sizeof] = ACTIONS(1150), - [anon_sym___alignof__] = ACTIONS(1150), - [anon_sym___alignof] = ACTIONS(1150), - [anon_sym__alignof] = ACTIONS(1150), - [anon_sym_alignof] = ACTIONS(1150), - [anon_sym__Alignof] = ACTIONS(1150), - [anon_sym_offsetof] = ACTIONS(1150), - [anon_sym__Generic] = ACTIONS(1150), - [anon_sym_asm] = ACTIONS(1150), - [anon_sym___asm__] = ACTIONS(1150), - [anon_sym___asm] = ACTIONS(1150), - [sym_number_literal] = ACTIONS(1152), - [anon_sym_L_SQUOTE] = ACTIONS(1152), - [anon_sym_u_SQUOTE] = ACTIONS(1152), - [anon_sym_U_SQUOTE] = ACTIONS(1152), - [anon_sym_u8_SQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_L_DQUOTE] = ACTIONS(1152), - [anon_sym_u_DQUOTE] = ACTIONS(1152), - [anon_sym_U_DQUOTE] = ACTIONS(1152), - [anon_sym_u8_DQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [anon_sym_NULL] = ACTIONS(1150), - [anon_sym_nullptr] = ACTIONS(1150), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(1156), - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1214), - [aux_sym_preproc_include_token1] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [anon_sym___attribute] = ACTIONS(1214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1216), - [anon_sym___declspec] = ACTIONS(1214), - [anon_sym___cdecl] = ACTIONS(1214), - [anon_sym___clrcall] = ACTIONS(1214), - [anon_sym___stdcall] = ACTIONS(1214), - [anon_sym___fastcall] = ACTIONS(1214), - [anon_sym___thiscall] = ACTIONS(1214), - [anon_sym___vectorcall] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___inline] = ACTIONS(1214), - [anon_sym___inline__] = ACTIONS(1214), - [anon_sym___forceinline] = ACTIONS(1214), - [anon_sym_thread_local] = ACTIONS(1214), - [anon_sym___thread] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_constexpr] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym___restrict__] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym__Noreturn] = ACTIONS(1214), - [anon_sym_noreturn] = ACTIONS(1214), - [anon_sym__Nonnull] = ACTIONS(1214), - [anon_sym_alignas] = ACTIONS(1214), - [anon_sym__Alignas] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym___try] = ACTIONS(1214), - [anon_sym___leave] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_sizeof] = ACTIONS(1214), - [anon_sym___alignof__] = ACTIONS(1214), - [anon_sym___alignof] = ACTIONS(1214), - [anon_sym__alignof] = ACTIONS(1214), - [anon_sym_alignof] = ACTIONS(1214), - [anon_sym__Alignof] = ACTIONS(1214), - [anon_sym_offsetof] = ACTIONS(1214), - [anon_sym__Generic] = ACTIONS(1214), - [anon_sym_asm] = ACTIONS(1214), - [anon_sym___asm__] = ACTIONS(1214), - [anon_sym___asm] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1216), - [anon_sym_L_SQUOTE] = ACTIONS(1216), - [anon_sym_u_SQUOTE] = ACTIONS(1216), - [anon_sym_U_SQUOTE] = ACTIONS(1216), - [anon_sym_u8_SQUOTE] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_L_DQUOTE] = ACTIONS(1216), - [anon_sym_u_DQUOTE] = ACTIONS(1216), - [anon_sym_U_DQUOTE] = ACTIONS(1216), - [anon_sym_u8_DQUOTE] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_true] = ACTIONS(1214), - [sym_false] = ACTIONS(1214), - [anon_sym_NULL] = ACTIONS(1214), - [anon_sym_nullptr] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___attribute] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym__Nonnull] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [anon_sym___asm] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), - [sym_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1156), - [sym_identifier] = ACTIONS(1154), - [aux_sym_preproc_include_token1] = ACTIONS(1154), - [aux_sym_preproc_def_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1154), - [sym_preproc_directive] = ACTIONS(1154), - [anon_sym_LPAREN2] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym___attribute__] = ACTIONS(1154), - [anon_sym___attribute] = ACTIONS(1154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1156), - [anon_sym___declspec] = ACTIONS(1154), - [anon_sym___cdecl] = ACTIONS(1154), - [anon_sym___clrcall] = ACTIONS(1154), - [anon_sym___stdcall] = ACTIONS(1154), - [anon_sym___fastcall] = ACTIONS(1154), - [anon_sym___thiscall] = ACTIONS(1154), - [anon_sym___vectorcall] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(1154), - [anon_sym_unsigned] = ACTIONS(1154), - [anon_sym_long] = ACTIONS(1154), - [anon_sym_short] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_auto] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_inline] = ACTIONS(1154), - [anon_sym___inline] = ACTIONS(1154), - [anon_sym___inline__] = ACTIONS(1154), - [anon_sym___forceinline] = ACTIONS(1154), - [anon_sym_thread_local] = ACTIONS(1154), - [anon_sym___thread] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_constexpr] = ACTIONS(1154), - [anon_sym_volatile] = ACTIONS(1154), - [anon_sym_restrict] = ACTIONS(1154), - [anon_sym___restrict__] = ACTIONS(1154), - [anon_sym__Atomic] = ACTIONS(1154), - [anon_sym__Noreturn] = ACTIONS(1154), - [anon_sym_noreturn] = ACTIONS(1154), - [anon_sym__Nonnull] = ACTIONS(1154), - [anon_sym_alignas] = ACTIONS(1154), - [anon_sym__Alignas] = ACTIONS(1154), - [sym_primitive_type] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1154), - [anon_sym___try] = ACTIONS(1154), - [anon_sym___leave] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym___alignof__] = ACTIONS(1154), - [anon_sym___alignof] = ACTIONS(1154), - [anon_sym__alignof] = ACTIONS(1154), - [anon_sym_alignof] = ACTIONS(1154), - [anon_sym__Alignof] = ACTIONS(1154), - [anon_sym_offsetof] = ACTIONS(1154), - [anon_sym__Generic] = ACTIONS(1154), - [anon_sym_asm] = ACTIONS(1154), - [anon_sym___asm__] = ACTIONS(1154), - [anon_sym___asm] = ACTIONS(1154), - [sym_number_literal] = ACTIONS(1156), - [anon_sym_L_SQUOTE] = ACTIONS(1156), - [anon_sym_u_SQUOTE] = ACTIONS(1156), - [anon_sym_U_SQUOTE] = ACTIONS(1156), - [anon_sym_u8_SQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_L_DQUOTE] = ACTIONS(1156), - [anon_sym_u_DQUOTE] = ACTIONS(1156), - [anon_sym_U_DQUOTE] = ACTIONS(1156), - [anon_sym_u8_DQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym_true] = ACTIONS(1154), - [sym_false] = ACTIONS(1154), - [anon_sym_NULL] = ACTIONS(1154), - [anon_sym_nullptr] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1246), - [aux_sym_preproc_include_token1] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1246), - [aux_sym_preproc_if_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), - [sym_preproc_directive] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym___extension__] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym___attribute__] = ACTIONS(1246), - [anon_sym___attribute] = ACTIONS(1246), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1248), - [anon_sym___declspec] = ACTIONS(1246), - [anon_sym___cdecl] = ACTIONS(1246), - [anon_sym___clrcall] = ACTIONS(1246), - [anon_sym___stdcall] = ACTIONS(1246), - [anon_sym___fastcall] = ACTIONS(1246), - [anon_sym___thiscall] = ACTIONS(1246), - [anon_sym___vectorcall] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1246), - [anon_sym_short] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_auto] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1246), - [anon_sym_inline] = ACTIONS(1246), - [anon_sym___inline] = ACTIONS(1246), - [anon_sym___inline__] = ACTIONS(1246), - [anon_sym___forceinline] = ACTIONS(1246), - [anon_sym_thread_local] = ACTIONS(1246), - [anon_sym___thread] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_constexpr] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1246), - [anon_sym___restrict__] = ACTIONS(1246), - [anon_sym__Atomic] = ACTIONS(1246), - [anon_sym__Noreturn] = ACTIONS(1246), - [anon_sym_noreturn] = ACTIONS(1246), - [anon_sym__Nonnull] = ACTIONS(1246), - [anon_sym_alignas] = ACTIONS(1246), - [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_goto] = ACTIONS(1246), - [anon_sym___try] = ACTIONS(1246), - [anon_sym___leave] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1246), - [anon_sym___alignof__] = ACTIONS(1246), - [anon_sym___alignof] = ACTIONS(1246), - [anon_sym__alignof] = ACTIONS(1246), - [anon_sym_alignof] = ACTIONS(1246), - [anon_sym__Alignof] = ACTIONS(1246), - [anon_sym_offsetof] = ACTIONS(1246), - [anon_sym__Generic] = ACTIONS(1246), - [anon_sym_asm] = ACTIONS(1246), - [anon_sym___asm__] = ACTIONS(1246), - [anon_sym___asm] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1248), - [anon_sym_L_SQUOTE] = ACTIONS(1248), - [anon_sym_u_SQUOTE] = ACTIONS(1248), - [anon_sym_U_SQUOTE] = ACTIONS(1248), - [anon_sym_u8_SQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_L_DQUOTE] = ACTIONS(1248), - [anon_sym_u_DQUOTE] = ACTIONS(1248), - [anon_sym_U_DQUOTE] = ACTIONS(1248), - [anon_sym_u8_DQUOTE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [anon_sym_NULL] = ACTIONS(1246), - [anon_sym_nullptr] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - }, - [237] = { - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym___extension__] = ACTIONS(1178), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym___attribute] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), - [anon_sym___declspec] = ACTIONS(1178), - [anon_sym___cdecl] = ACTIONS(1178), - [anon_sym___clrcall] = ACTIONS(1178), - [anon_sym___stdcall] = ACTIONS(1178), - [anon_sym___fastcall] = ACTIONS(1178), - [anon_sym___thiscall] = ACTIONS(1178), - [anon_sym___vectorcall] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_RBRACE] = ACTIONS(1180), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym___inline] = ACTIONS(1178), - [anon_sym___inline__] = ACTIONS(1178), - [anon_sym___forceinline] = ACTIONS(1178), - [anon_sym_thread_local] = ACTIONS(1178), - [anon_sym___thread] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_constexpr] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym___restrict__] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym__Noreturn] = ACTIONS(1178), - [anon_sym_noreturn] = ACTIONS(1178), - [anon_sym__Nonnull] = ACTIONS(1178), - [anon_sym_alignas] = ACTIONS(1178), - [anon_sym__Alignas] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym___try] = ACTIONS(1178), - [anon_sym___leave] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [anon_sym___alignof__] = ACTIONS(1178), - [anon_sym___alignof] = ACTIONS(1178), - [anon_sym__alignof] = ACTIONS(1178), - [anon_sym_alignof] = ACTIONS(1178), - [anon_sym__Alignof] = ACTIONS(1178), - [anon_sym_offsetof] = ACTIONS(1178), - [anon_sym__Generic] = ACTIONS(1178), - [anon_sym_asm] = ACTIONS(1178), - [anon_sym___asm__] = ACTIONS(1178), - [anon_sym___asm] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [anon_sym_NULL] = ACTIONS(1178), - [anon_sym_nullptr] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - }, - [238] = { - [sym_identifier] = ACTIONS(1182), - [aux_sym_preproc_include_token1] = ACTIONS(1182), - [aux_sym_preproc_def_token1] = ACTIONS(1182), - [aux_sym_preproc_if_token1] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), - [sym_preproc_directive] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym___extension__] = ACTIONS(1182), - [anon_sym_typedef] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1182), - [anon_sym___attribute__] = ACTIONS(1182), - [anon_sym___attribute] = ACTIONS(1182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1184), - [anon_sym___declspec] = ACTIONS(1182), - [anon_sym___cdecl] = ACTIONS(1182), - [anon_sym___clrcall] = ACTIONS(1182), - [anon_sym___stdcall] = ACTIONS(1182), - [anon_sym___fastcall] = ACTIONS(1182), - [anon_sym___thiscall] = ACTIONS(1182), - [anon_sym___vectorcall] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [anon_sym_signed] = ACTIONS(1182), - [anon_sym_unsigned] = ACTIONS(1182), - [anon_sym_long] = ACTIONS(1182), - [anon_sym_short] = ACTIONS(1182), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_auto] = ACTIONS(1182), - [anon_sym_register] = ACTIONS(1182), - [anon_sym_inline] = ACTIONS(1182), - [anon_sym___inline] = ACTIONS(1182), - [anon_sym___inline__] = ACTIONS(1182), - [anon_sym___forceinline] = ACTIONS(1182), - [anon_sym_thread_local] = ACTIONS(1182), - [anon_sym___thread] = ACTIONS(1182), - [anon_sym_const] = ACTIONS(1182), - [anon_sym_constexpr] = ACTIONS(1182), - [anon_sym_volatile] = ACTIONS(1182), - [anon_sym_restrict] = ACTIONS(1182), - [anon_sym___restrict__] = ACTIONS(1182), - [anon_sym__Atomic] = ACTIONS(1182), - [anon_sym__Noreturn] = ACTIONS(1182), - [anon_sym_noreturn] = ACTIONS(1182), - [anon_sym__Nonnull] = ACTIONS(1182), - [anon_sym_alignas] = ACTIONS(1182), - [anon_sym__Alignas] = ACTIONS(1182), - [sym_primitive_type] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1182), - [anon_sym_struct] = ACTIONS(1182), - [anon_sym_union] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_else] = ACTIONS(1182), - [anon_sym_switch] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1182), - [anon_sym_default] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1182), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1182), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1182), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_goto] = ACTIONS(1182), - [anon_sym___try] = ACTIONS(1182), - [anon_sym___leave] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_sizeof] = ACTIONS(1182), - [anon_sym___alignof__] = ACTIONS(1182), - [anon_sym___alignof] = ACTIONS(1182), - [anon_sym__alignof] = ACTIONS(1182), - [anon_sym_alignof] = ACTIONS(1182), - [anon_sym__Alignof] = ACTIONS(1182), - [anon_sym_offsetof] = ACTIONS(1182), - [anon_sym__Generic] = ACTIONS(1182), - [anon_sym_asm] = ACTIONS(1182), - [anon_sym___asm__] = ACTIONS(1182), - [anon_sym___asm] = ACTIONS(1182), - [sym_number_literal] = ACTIONS(1184), - [anon_sym_L_SQUOTE] = ACTIONS(1184), - [anon_sym_u_SQUOTE] = ACTIONS(1184), - [anon_sym_U_SQUOTE] = ACTIONS(1184), - [anon_sym_u8_SQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_L_DQUOTE] = ACTIONS(1184), - [anon_sym_u_DQUOTE] = ACTIONS(1184), - [anon_sym_U_DQUOTE] = ACTIONS(1184), - [anon_sym_u8_DQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_true] = ACTIONS(1182), - [sym_false] = ACTIONS(1182), - [anon_sym_NULL] = ACTIONS(1182), - [anon_sym_nullptr] = ACTIONS(1182), - [sym_comment] = ACTIONS(3), - }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1136), - [sym_identifier] = ACTIONS(1134), - [aux_sym_preproc_include_token1] = ACTIONS(1134), - [aux_sym_preproc_def_token1] = ACTIONS(1134), - [aux_sym_preproc_if_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), - [sym_preproc_directive] = ACTIONS(1134), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym___extension__] = ACTIONS(1134), - [anon_sym_typedef] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym___attribute__] = ACTIONS(1134), - [anon_sym___attribute] = ACTIONS(1134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym___declspec] = ACTIONS(1134), - [anon_sym___cdecl] = ACTIONS(1134), - [anon_sym___clrcall] = ACTIONS(1134), - [anon_sym___stdcall] = ACTIONS(1134), - [anon_sym___fastcall] = ACTIONS(1134), - [anon_sym___thiscall] = ACTIONS(1134), - [anon_sym___vectorcall] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym___inline] = ACTIONS(1134), - [anon_sym___inline__] = ACTIONS(1134), - [anon_sym___forceinline] = ACTIONS(1134), - [anon_sym_thread_local] = ACTIONS(1134), - [anon_sym___thread] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_constexpr] = ACTIONS(1134), - [anon_sym_volatile] = ACTIONS(1134), - [anon_sym_restrict] = ACTIONS(1134), - [anon_sym___restrict__] = ACTIONS(1134), - [anon_sym__Atomic] = ACTIONS(1134), - [anon_sym__Noreturn] = ACTIONS(1134), - [anon_sym_noreturn] = ACTIONS(1134), - [anon_sym__Nonnull] = ACTIONS(1134), - [anon_sym_alignas] = ACTIONS(1134), - [anon_sym__Alignas] = ACTIONS(1134), - [sym_primitive_type] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_else] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_goto] = ACTIONS(1134), - [anon_sym___try] = ACTIONS(1134), - [anon_sym___leave] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym___alignof__] = ACTIONS(1134), - [anon_sym___alignof] = ACTIONS(1134), - [anon_sym__alignof] = ACTIONS(1134), - [anon_sym_alignof] = ACTIONS(1134), - [anon_sym__Alignof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = ACTIONS(1134), - [anon_sym_asm] = ACTIONS(1134), - [anon_sym___asm__] = ACTIONS(1134), - [anon_sym___asm] = ACTIONS(1134), - [sym_number_literal] = ACTIONS(1136), - [anon_sym_L_SQUOTE] = ACTIONS(1136), - [anon_sym_u_SQUOTE] = ACTIONS(1136), - [anon_sym_U_SQUOTE] = ACTIONS(1136), - [anon_sym_u8_SQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_L_DQUOTE] = ACTIONS(1136), - [anon_sym_u_DQUOTE] = ACTIONS(1136), - [anon_sym_U_DQUOTE] = ACTIONS(1136), - [anon_sym_u8_DQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [sym_true] = ACTIONS(1134), - [sym_false] = ACTIONS(1134), - [anon_sym_NULL] = ACTIONS(1134), - [anon_sym_nullptr] = ACTIONS(1134), - [sym_comment] = ACTIONS(3), - }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1160), - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym___extension__] = ACTIONS(1158), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym___attribute__] = ACTIONS(1158), - [anon_sym___attribute] = ACTIONS(1158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(1158), - [anon_sym___cdecl] = ACTIONS(1158), - [anon_sym___clrcall] = ACTIONS(1158), - [anon_sym___stdcall] = ACTIONS(1158), - [anon_sym___fastcall] = ACTIONS(1158), - [anon_sym___thiscall] = ACTIONS(1158), - [anon_sym___vectorcall] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_signed] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_inline] = ACTIONS(1158), - [anon_sym___inline] = ACTIONS(1158), - [anon_sym___inline__] = ACTIONS(1158), - [anon_sym___forceinline] = ACTIONS(1158), - [anon_sym_thread_local] = ACTIONS(1158), - [anon_sym___thread] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_constexpr] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym___restrict__] = ACTIONS(1158), - [anon_sym__Atomic] = ACTIONS(1158), - [anon_sym__Noreturn] = ACTIONS(1158), - [anon_sym_noreturn] = ACTIONS(1158), - [anon_sym__Nonnull] = ACTIONS(1158), - [anon_sym_alignas] = ACTIONS(1158), - [anon_sym__Alignas] = ACTIONS(1158), - [sym_primitive_type] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym___try] = ACTIONS(1158), - [anon_sym___leave] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_sizeof] = ACTIONS(1158), - [anon_sym___alignof__] = ACTIONS(1158), - [anon_sym___alignof] = ACTIONS(1158), - [anon_sym__alignof] = ACTIONS(1158), - [anon_sym_alignof] = ACTIONS(1158), - [anon_sym__Alignof] = ACTIONS(1158), - [anon_sym_offsetof] = ACTIONS(1158), - [anon_sym__Generic] = ACTIONS(1158), - [anon_sym_asm] = ACTIONS(1158), - [anon_sym___asm__] = ACTIONS(1158), - [anon_sym___asm] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1160), - [anon_sym_L_SQUOTE] = ACTIONS(1160), - [anon_sym_u_SQUOTE] = ACTIONS(1160), - [anon_sym_U_SQUOTE] = ACTIONS(1160), - [anon_sym_u8_SQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_L_DQUOTE] = ACTIONS(1160), - [anon_sym_u_DQUOTE] = ACTIONS(1160), - [anon_sym_U_DQUOTE] = ACTIONS(1160), - [anon_sym_u8_DQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_true] = ACTIONS(1158), - [sym_false] = ACTIONS(1158), - [anon_sym_NULL] = ACTIONS(1158), - [anon_sym_nullptr] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1250), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym___extension__] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym___attribute__] = ACTIONS(1250), - [anon_sym___attribute] = ACTIONS(1250), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1252), - [anon_sym___declspec] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_signed] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_inline] = ACTIONS(1250), - [anon_sym___inline] = ACTIONS(1250), - [anon_sym___inline__] = ACTIONS(1250), - [anon_sym___forceinline] = ACTIONS(1250), - [anon_sym_thread_local] = ACTIONS(1250), - [anon_sym___thread] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_constexpr] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym___restrict__] = ACTIONS(1250), - [anon_sym__Atomic] = ACTIONS(1250), - [anon_sym__Noreturn] = ACTIONS(1250), - [anon_sym_noreturn] = ACTIONS(1250), - [anon_sym__Nonnull] = ACTIONS(1250), - [anon_sym_alignas] = ACTIONS(1250), - [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym___try] = ACTIONS(1250), - [anon_sym___leave] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_sizeof] = ACTIONS(1250), - [anon_sym___alignof__] = ACTIONS(1250), - [anon_sym___alignof] = ACTIONS(1250), - [anon_sym__alignof] = ACTIONS(1250), - [anon_sym_alignof] = ACTIONS(1250), - [anon_sym__Alignof] = ACTIONS(1250), - [anon_sym_offsetof] = ACTIONS(1250), - [anon_sym__Generic] = ACTIONS(1250), - [anon_sym_asm] = ACTIONS(1250), - [anon_sym___asm__] = ACTIONS(1250), - [anon_sym___asm] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1252), - [anon_sym_L_SQUOTE] = ACTIONS(1252), - [anon_sym_u_SQUOTE] = ACTIONS(1252), - [anon_sym_U_SQUOTE] = ACTIONS(1252), - [anon_sym_u8_SQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_L_DQUOTE] = ACTIONS(1252), - [anon_sym_u_DQUOTE] = ACTIONS(1252), - [anon_sym_U_DQUOTE] = ACTIONS(1252), - [anon_sym_u8_DQUOTE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [anon_sym_NULL] = ACTIONS(1250), - [anon_sym_nullptr] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - }, - [242] = { - [sym_identifier] = ACTIONS(1162), - [aux_sym_preproc_include_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1162), - [aux_sym_preproc_if_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1162), - [sym_preproc_directive] = ACTIONS(1162), - [anon_sym_LPAREN2] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym___extension__] = ACTIONS(1162), - [anon_sym_typedef] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym___attribute__] = ACTIONS(1162), - [anon_sym___attribute] = ACTIONS(1162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1164), - [anon_sym___declspec] = ACTIONS(1162), - [anon_sym___cdecl] = ACTIONS(1162), - [anon_sym___clrcall] = ACTIONS(1162), - [anon_sym___stdcall] = ACTIONS(1162), - [anon_sym___fastcall] = ACTIONS(1162), - [anon_sym___thiscall] = ACTIONS(1162), - [anon_sym___vectorcall] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1164), - [anon_sym_signed] = ACTIONS(1162), - [anon_sym_unsigned] = ACTIONS(1162), - [anon_sym_long] = ACTIONS(1162), - [anon_sym_short] = ACTIONS(1162), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_auto] = ACTIONS(1162), - [anon_sym_register] = ACTIONS(1162), - [anon_sym_inline] = ACTIONS(1162), - [anon_sym___inline] = ACTIONS(1162), - [anon_sym___inline__] = ACTIONS(1162), - [anon_sym___forceinline] = ACTIONS(1162), - [anon_sym_thread_local] = ACTIONS(1162), - [anon_sym___thread] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_constexpr] = ACTIONS(1162), - [anon_sym_volatile] = ACTIONS(1162), - [anon_sym_restrict] = ACTIONS(1162), - [anon_sym___restrict__] = ACTIONS(1162), - [anon_sym__Atomic] = ACTIONS(1162), - [anon_sym__Noreturn] = ACTIONS(1162), - [anon_sym_noreturn] = ACTIONS(1162), - [anon_sym__Nonnull] = ACTIONS(1162), - [anon_sym_alignas] = ACTIONS(1162), - [anon_sym__Alignas] = ACTIONS(1162), - [sym_primitive_type] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_else] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_do] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_goto] = ACTIONS(1162), - [anon_sym___try] = ACTIONS(1162), - [anon_sym___leave] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_sizeof] = ACTIONS(1162), - [anon_sym___alignof__] = ACTIONS(1162), - [anon_sym___alignof] = ACTIONS(1162), - [anon_sym__alignof] = ACTIONS(1162), - [anon_sym_alignof] = ACTIONS(1162), - [anon_sym__Alignof] = ACTIONS(1162), - [anon_sym_offsetof] = ACTIONS(1162), - [anon_sym__Generic] = ACTIONS(1162), - [anon_sym_asm] = ACTIONS(1162), - [anon_sym___asm__] = ACTIONS(1162), - [anon_sym___asm] = ACTIONS(1162), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_L_SQUOTE] = ACTIONS(1164), - [anon_sym_u_SQUOTE] = ACTIONS(1164), - [anon_sym_U_SQUOTE] = ACTIONS(1164), - [anon_sym_u8_SQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_L_DQUOTE] = ACTIONS(1164), - [anon_sym_u_DQUOTE] = ACTIONS(1164), - [anon_sym_U_DQUOTE] = ACTIONS(1164), - [anon_sym_u8_DQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_true] = ACTIONS(1162), - [sym_false] = ACTIONS(1162), - [anon_sym_NULL] = ACTIONS(1162), - [anon_sym_nullptr] = ACTIONS(1162), - [sym_comment] = ACTIONS(3), - }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_identifier] = ACTIONS(1166), - [aux_sym_preproc_include_token1] = ACTIONS(1166), - [aux_sym_preproc_def_token1] = ACTIONS(1166), - [aux_sym_preproc_if_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), - [sym_preproc_directive] = ACTIONS(1166), - [anon_sym_LPAREN2] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1166), - [anon_sym_typedef] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym___attribute__] = ACTIONS(1166), - [anon_sym___attribute] = ACTIONS(1166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), - [anon_sym___declspec] = ACTIONS(1166), - [anon_sym___cdecl] = ACTIONS(1166), - [anon_sym___clrcall] = ACTIONS(1166), - [anon_sym___stdcall] = ACTIONS(1166), - [anon_sym___fastcall] = ACTIONS(1166), - [anon_sym___thiscall] = ACTIONS(1166), - [anon_sym___vectorcall] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_signed] = ACTIONS(1166), - [anon_sym_unsigned] = ACTIONS(1166), - [anon_sym_long] = ACTIONS(1166), - [anon_sym_short] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_auto] = ACTIONS(1166), - [anon_sym_register] = ACTIONS(1166), - [anon_sym_inline] = ACTIONS(1166), - [anon_sym___inline] = ACTIONS(1166), - [anon_sym___inline__] = ACTIONS(1166), - [anon_sym___forceinline] = ACTIONS(1166), - [anon_sym_thread_local] = ACTIONS(1166), - [anon_sym___thread] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_constexpr] = ACTIONS(1166), - [anon_sym_volatile] = ACTIONS(1166), - [anon_sym_restrict] = ACTIONS(1166), - [anon_sym___restrict__] = ACTIONS(1166), - [anon_sym__Atomic] = ACTIONS(1166), - [anon_sym__Noreturn] = ACTIONS(1166), - [anon_sym_noreturn] = ACTIONS(1166), - [anon_sym__Nonnull] = ACTIONS(1166), - [anon_sym_alignas] = ACTIONS(1166), - [anon_sym__Alignas] = ACTIONS(1166), - [sym_primitive_type] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_else] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_goto] = ACTIONS(1166), - [anon_sym___try] = ACTIONS(1166), - [anon_sym___leave] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_sizeof] = ACTIONS(1166), - [anon_sym___alignof__] = ACTIONS(1166), - [anon_sym___alignof] = ACTIONS(1166), - [anon_sym__alignof] = ACTIONS(1166), - [anon_sym_alignof] = ACTIONS(1166), - [anon_sym__Alignof] = ACTIONS(1166), - [anon_sym_offsetof] = ACTIONS(1166), - [anon_sym__Generic] = ACTIONS(1166), - [anon_sym_asm] = ACTIONS(1166), - [anon_sym___asm__] = ACTIONS(1166), - [anon_sym___asm] = ACTIONS(1166), - [sym_number_literal] = ACTIONS(1168), - [anon_sym_L_SQUOTE] = ACTIONS(1168), - [anon_sym_u_SQUOTE] = ACTIONS(1168), - [anon_sym_U_SQUOTE] = ACTIONS(1168), - [anon_sym_u8_SQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_L_DQUOTE] = ACTIONS(1168), - [anon_sym_u_DQUOTE] = ACTIONS(1168), - [anon_sym_U_DQUOTE] = ACTIONS(1168), - [anon_sym_u8_DQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [anon_sym_NULL] = ACTIONS(1166), - [anon_sym_nullptr] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [sym_identifier] = ACTIONS(1186), - [aux_sym_preproc_include_token1] = ACTIONS(1186), - [aux_sym_preproc_def_token1] = ACTIONS(1186), - [aux_sym_preproc_if_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1186), - [sym_preproc_directive] = ACTIONS(1186), - [anon_sym_LPAREN2] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym___extension__] = ACTIONS(1186), - [anon_sym_typedef] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym___attribute__] = ACTIONS(1186), - [anon_sym___attribute] = ACTIONS(1186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1188), - [anon_sym___declspec] = ACTIONS(1186), - [anon_sym___cdecl] = ACTIONS(1186), - [anon_sym___clrcall] = ACTIONS(1186), - [anon_sym___stdcall] = ACTIONS(1186), - [anon_sym___fastcall] = ACTIONS(1186), - [anon_sym___thiscall] = ACTIONS(1186), - [anon_sym___vectorcall] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_signed] = ACTIONS(1186), - [anon_sym_unsigned] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_auto] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_inline] = ACTIONS(1186), - [anon_sym___inline] = ACTIONS(1186), - [anon_sym___inline__] = ACTIONS(1186), - [anon_sym___forceinline] = ACTIONS(1186), - [anon_sym_thread_local] = ACTIONS(1186), - [anon_sym___thread] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_constexpr] = ACTIONS(1186), - [anon_sym_volatile] = ACTIONS(1186), - [anon_sym_restrict] = ACTIONS(1186), - [anon_sym___restrict__] = ACTIONS(1186), - [anon_sym__Atomic] = ACTIONS(1186), - [anon_sym__Noreturn] = ACTIONS(1186), - [anon_sym_noreturn] = ACTIONS(1186), - [anon_sym__Nonnull] = ACTIONS(1186), - [anon_sym_alignas] = ACTIONS(1186), - [anon_sym__Alignas] = ACTIONS(1186), - [sym_primitive_type] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1186), - [anon_sym___try] = ACTIONS(1186), - [anon_sym___leave] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_sizeof] = ACTIONS(1186), - [anon_sym___alignof__] = ACTIONS(1186), - [anon_sym___alignof] = ACTIONS(1186), - [anon_sym__alignof] = ACTIONS(1186), - [anon_sym_alignof] = ACTIONS(1186), - [anon_sym__Alignof] = ACTIONS(1186), - [anon_sym_offsetof] = ACTIONS(1186), - [anon_sym__Generic] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym___asm__] = ACTIONS(1186), - [anon_sym___asm] = ACTIONS(1186), - [sym_number_literal] = ACTIONS(1188), - [anon_sym_L_SQUOTE] = ACTIONS(1188), - [anon_sym_u_SQUOTE] = ACTIONS(1188), - [anon_sym_U_SQUOTE] = ACTIONS(1188), - [anon_sym_u8_SQUOTE] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_L_DQUOTE] = ACTIONS(1188), - [anon_sym_u_DQUOTE] = ACTIONS(1188), - [anon_sym_U_DQUOTE] = ACTIONS(1188), - [anon_sym_u8_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_true] = ACTIONS(1186), - [sym_false] = ACTIONS(1186), - [anon_sym_NULL] = ACTIONS(1186), - [anon_sym_nullptr] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [anon_sym_LPAREN2] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym___extension__] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym___attribute__] = ACTIONS(1242), - [anon_sym___attribute] = ACTIONS(1242), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), - [anon_sym___declspec] = ACTIONS(1242), - [anon_sym___cdecl] = ACTIONS(1242), - [anon_sym___clrcall] = ACTIONS(1242), - [anon_sym___stdcall] = ACTIONS(1242), - [anon_sym___fastcall] = ACTIONS(1242), - [anon_sym___thiscall] = ACTIONS(1242), - [anon_sym___vectorcall] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym___inline] = ACTIONS(1242), - [anon_sym___inline__] = ACTIONS(1242), - [anon_sym___forceinline] = ACTIONS(1242), - [anon_sym_thread_local] = ACTIONS(1242), - [anon_sym___thread] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_constexpr] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym___restrict__] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [anon_sym__Noreturn] = ACTIONS(1242), - [anon_sym_noreturn] = ACTIONS(1242), - [anon_sym__Nonnull] = ACTIONS(1242), - [anon_sym_alignas] = ACTIONS(1242), - [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym___try] = ACTIONS(1242), - [anon_sym___leave] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym___alignof__] = ACTIONS(1242), - [anon_sym___alignof] = ACTIONS(1242), - [anon_sym__alignof] = ACTIONS(1242), - [anon_sym_alignof] = ACTIONS(1242), - [anon_sym__Alignof] = ACTIONS(1242), - [anon_sym_offsetof] = ACTIONS(1242), - [anon_sym__Generic] = ACTIONS(1242), - [anon_sym_asm] = ACTIONS(1242), - [anon_sym___asm__] = ACTIONS(1242), - [anon_sym___asm] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1244), - [anon_sym_L_SQUOTE] = ACTIONS(1244), - [anon_sym_u_SQUOTE] = ACTIONS(1244), - [anon_sym_U_SQUOTE] = ACTIONS(1244), - [anon_sym_u8_SQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_L_DQUOTE] = ACTIONS(1244), - [anon_sym_u_DQUOTE] = ACTIONS(1244), - [anon_sym_U_DQUOTE] = ACTIONS(1244), - [anon_sym_u8_DQUOTE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_true] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_NULL] = ACTIONS(1242), - [anon_sym_nullptr] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1184), - [sym_identifier] = ACTIONS(1182), - [aux_sym_preproc_include_token1] = ACTIONS(1182), - [aux_sym_preproc_def_token1] = ACTIONS(1182), - [aux_sym_preproc_if_token1] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), - [sym_preproc_directive] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym___extension__] = ACTIONS(1182), - [anon_sym_typedef] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1182), - [anon_sym___attribute__] = ACTIONS(1182), - [anon_sym___attribute] = ACTIONS(1182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1184), - [anon_sym___declspec] = ACTIONS(1182), - [anon_sym___cdecl] = ACTIONS(1182), - [anon_sym___clrcall] = ACTIONS(1182), - [anon_sym___stdcall] = ACTIONS(1182), - [anon_sym___fastcall] = ACTIONS(1182), - [anon_sym___thiscall] = ACTIONS(1182), - [anon_sym___vectorcall] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_signed] = ACTIONS(1182), - [anon_sym_unsigned] = ACTIONS(1182), - [anon_sym_long] = ACTIONS(1182), - [anon_sym_short] = ACTIONS(1182), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_auto] = ACTIONS(1182), - [anon_sym_register] = ACTIONS(1182), - [anon_sym_inline] = ACTIONS(1182), - [anon_sym___inline] = ACTIONS(1182), - [anon_sym___inline__] = ACTIONS(1182), - [anon_sym___forceinline] = ACTIONS(1182), - [anon_sym_thread_local] = ACTIONS(1182), - [anon_sym___thread] = ACTIONS(1182), - [anon_sym_const] = ACTIONS(1182), - [anon_sym_constexpr] = ACTIONS(1182), - [anon_sym_volatile] = ACTIONS(1182), - [anon_sym_restrict] = ACTIONS(1182), - [anon_sym___restrict__] = ACTIONS(1182), - [anon_sym__Atomic] = ACTIONS(1182), - [anon_sym__Noreturn] = ACTIONS(1182), - [anon_sym_noreturn] = ACTIONS(1182), - [anon_sym__Nonnull] = ACTIONS(1182), - [anon_sym_alignas] = ACTIONS(1182), - [anon_sym__Alignas] = ACTIONS(1182), - [sym_primitive_type] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1182), - [anon_sym_struct] = ACTIONS(1182), - [anon_sym_union] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_else] = ACTIONS(1182), - [anon_sym_switch] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1182), - [anon_sym_default] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1182), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1182), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1182), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_goto] = ACTIONS(1182), - [anon_sym___try] = ACTIONS(1182), - [anon_sym___leave] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_sizeof] = ACTIONS(1182), - [anon_sym___alignof__] = ACTIONS(1182), - [anon_sym___alignof] = ACTIONS(1182), - [anon_sym__alignof] = ACTIONS(1182), - [anon_sym_alignof] = ACTIONS(1182), - [anon_sym__Alignof] = ACTIONS(1182), - [anon_sym_offsetof] = ACTIONS(1182), - [anon_sym__Generic] = ACTIONS(1182), - [anon_sym_asm] = ACTIONS(1182), - [anon_sym___asm__] = ACTIONS(1182), - [anon_sym___asm] = ACTIONS(1182), - [sym_number_literal] = ACTIONS(1184), - [anon_sym_L_SQUOTE] = ACTIONS(1184), - [anon_sym_u_SQUOTE] = ACTIONS(1184), - [anon_sym_U_SQUOTE] = ACTIONS(1184), - [anon_sym_u8_SQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_L_DQUOTE] = ACTIONS(1184), - [anon_sym_u_DQUOTE] = ACTIONS(1184), - [anon_sym_U_DQUOTE] = ACTIONS(1184), - [anon_sym_u8_DQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_true] = ACTIONS(1182), - [sym_false] = ACTIONS(1182), - [anon_sym_NULL] = ACTIONS(1182), - [anon_sym_nullptr] = ACTIONS(1182), - [sym_comment] = ACTIONS(3), - }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1172), - [sym_identifier] = ACTIONS(1170), - [aux_sym_preproc_include_token1] = ACTIONS(1170), - [aux_sym_preproc_def_token1] = ACTIONS(1170), - [aux_sym_preproc_if_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1170), - [sym_preproc_directive] = ACTIONS(1170), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym___extension__] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym___attribute__] = ACTIONS(1170), - [anon_sym___attribute] = ACTIONS(1170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1172), - [anon_sym___declspec] = ACTIONS(1170), - [anon_sym___cdecl] = ACTIONS(1170), - [anon_sym___clrcall] = ACTIONS(1170), - [anon_sym___stdcall] = ACTIONS(1170), - [anon_sym___fastcall] = ACTIONS(1170), - [anon_sym___thiscall] = ACTIONS(1170), - [anon_sym___vectorcall] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(1170), - [anon_sym_unsigned] = ACTIONS(1170), - [anon_sym_long] = ACTIONS(1170), - [anon_sym_short] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1170), - [anon_sym_register] = ACTIONS(1170), - [anon_sym_inline] = ACTIONS(1170), - [anon_sym___inline] = ACTIONS(1170), - [anon_sym___inline__] = ACTIONS(1170), - [anon_sym___forceinline] = ACTIONS(1170), - [anon_sym_thread_local] = ACTIONS(1170), - [anon_sym___thread] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_constexpr] = ACTIONS(1170), - [anon_sym_volatile] = ACTIONS(1170), - [anon_sym_restrict] = ACTIONS(1170), - [anon_sym___restrict__] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1170), - [anon_sym__Noreturn] = ACTIONS(1170), - [anon_sym_noreturn] = ACTIONS(1170), - [anon_sym__Nonnull] = ACTIONS(1170), - [anon_sym_alignas] = ACTIONS(1170), - [anon_sym__Alignas] = ACTIONS(1170), - [sym_primitive_type] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_else] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_goto] = ACTIONS(1170), - [anon_sym___try] = ACTIONS(1170), - [anon_sym___leave] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_sizeof] = ACTIONS(1170), - [anon_sym___alignof__] = ACTIONS(1170), - [anon_sym___alignof] = ACTIONS(1170), - [anon_sym__alignof] = ACTIONS(1170), - [anon_sym_alignof] = ACTIONS(1170), - [anon_sym__Alignof] = ACTIONS(1170), - [anon_sym_offsetof] = ACTIONS(1170), - [anon_sym__Generic] = ACTIONS(1170), - [anon_sym_asm] = ACTIONS(1170), - [anon_sym___asm__] = ACTIONS(1170), - [anon_sym___asm] = ACTIONS(1170), - [sym_number_literal] = ACTIONS(1172), - [anon_sym_L_SQUOTE] = ACTIONS(1172), - [anon_sym_u_SQUOTE] = ACTIONS(1172), - [anon_sym_U_SQUOTE] = ACTIONS(1172), - [anon_sym_u8_SQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_L_DQUOTE] = ACTIONS(1172), - [anon_sym_u_DQUOTE] = ACTIONS(1172), - [anon_sym_U_DQUOTE] = ACTIONS(1172), - [anon_sym_u8_DQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_true] = ACTIONS(1170), - [sym_false] = ACTIONS(1170), - [anon_sym_NULL] = ACTIONS(1170), - [anon_sym_nullptr] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(1174), - [aux_sym_preproc_def_token1] = ACTIONS(1174), - [aux_sym_preproc_if_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), - [sym_preproc_directive] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym___extension__] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym___attribute__] = ACTIONS(1174), - [anon_sym___attribute] = ACTIONS(1174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1176), - [anon_sym___declspec] = ACTIONS(1174), - [anon_sym___cdecl] = ACTIONS(1174), - [anon_sym___clrcall] = ACTIONS(1174), - [anon_sym___stdcall] = ACTIONS(1174), - [anon_sym___fastcall] = ACTIONS(1174), - [anon_sym___thiscall] = ACTIONS(1174), - [anon_sym___vectorcall] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_signed] = ACTIONS(1174), - [anon_sym_unsigned] = ACTIONS(1174), - [anon_sym_long] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym___inline] = ACTIONS(1174), - [anon_sym___inline__] = ACTIONS(1174), - [anon_sym___forceinline] = ACTIONS(1174), - [anon_sym_thread_local] = ACTIONS(1174), - [anon_sym___thread] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_constexpr] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym___restrict__] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym__Noreturn] = ACTIONS(1174), - [anon_sym_noreturn] = ACTIONS(1174), - [anon_sym__Nonnull] = ACTIONS(1174), - [anon_sym_alignas] = ACTIONS(1174), - [anon_sym__Alignas] = ACTIONS(1174), - [sym_primitive_type] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_do] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_goto] = ACTIONS(1174), - [anon_sym___try] = ACTIONS(1174), - [anon_sym___leave] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1174), - [anon_sym___alignof__] = ACTIONS(1174), - [anon_sym___alignof] = ACTIONS(1174), - [anon_sym__alignof] = ACTIONS(1174), - [anon_sym_alignof] = ACTIONS(1174), - [anon_sym__Alignof] = ACTIONS(1174), - [anon_sym_offsetof] = ACTIONS(1174), - [anon_sym__Generic] = ACTIONS(1174), - [anon_sym_asm] = ACTIONS(1174), - [anon_sym___asm__] = ACTIONS(1174), - [anon_sym___asm] = ACTIONS(1174), - [sym_number_literal] = ACTIONS(1176), - [anon_sym_L_SQUOTE] = ACTIONS(1176), - [anon_sym_u_SQUOTE] = ACTIONS(1176), - [anon_sym_U_SQUOTE] = ACTIONS(1176), - [anon_sym_u8_SQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_L_DQUOTE] = ACTIONS(1176), - [anon_sym_u_DQUOTE] = ACTIONS(1176), - [anon_sym_U_DQUOTE] = ACTIONS(1176), - [anon_sym_u8_DQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_true] = ACTIONS(1174), - [sym_false] = ACTIONS(1174), - [anon_sym_NULL] = ACTIONS(1174), - [anon_sym_nullptr] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym___extension__] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym___attribute] = ACTIONS(1234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), - [anon_sym___declspec] = ACTIONS(1234), - [anon_sym___cdecl] = ACTIONS(1234), - [anon_sym___clrcall] = ACTIONS(1234), - [anon_sym___stdcall] = ACTIONS(1234), - [anon_sym___fastcall] = ACTIONS(1234), - [anon_sym___thiscall] = ACTIONS(1234), - [anon_sym___vectorcall] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), - [anon_sym___inline] = ACTIONS(1234), - [anon_sym___inline__] = ACTIONS(1234), - [anon_sym___forceinline] = ACTIONS(1234), - [anon_sym_thread_local] = ACTIONS(1234), - [anon_sym___thread] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_constexpr] = ACTIONS(1234), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [anon_sym___restrict__] = ACTIONS(1234), - [anon_sym__Atomic] = ACTIONS(1234), - [anon_sym__Noreturn] = ACTIONS(1234), - [anon_sym_noreturn] = ACTIONS(1234), - [anon_sym__Nonnull] = ACTIONS(1234), - [anon_sym_alignas] = ACTIONS(1234), - [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_case] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym___try] = ACTIONS(1234), - [anon_sym___leave] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym___alignof__] = ACTIONS(1234), - [anon_sym___alignof] = ACTIONS(1234), - [anon_sym__alignof] = ACTIONS(1234), - [anon_sym_alignof] = ACTIONS(1234), - [anon_sym__Alignof] = ACTIONS(1234), - [anon_sym_offsetof] = ACTIONS(1234), - [anon_sym__Generic] = ACTIONS(1234), - [anon_sym_asm] = ACTIONS(1234), - [anon_sym___asm__] = ACTIONS(1234), - [anon_sym___asm] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym_u_SQUOTE] = ACTIONS(1236), - [anon_sym_U_SQUOTE] = ACTIONS(1236), - [anon_sym_u8_SQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_u_DQUOTE] = ACTIONS(1236), - [anon_sym_U_DQUOTE] = ACTIONS(1236), - [anon_sym_u8_DQUOTE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_NULL] = ACTIONS(1234), - [anon_sym_nullptr] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - }, - [251] = { - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(1222), - [aux_sym_preproc_def_token1] = ACTIONS(1222), - [aux_sym_preproc_if_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), - [sym_preproc_directive] = ACTIONS(1222), - [anon_sym_LPAREN2] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym___extension__] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym___attribute__] = ACTIONS(1222), - [anon_sym___attribute] = ACTIONS(1222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1224), - [anon_sym___declspec] = ACTIONS(1222), - [anon_sym___cdecl] = ACTIONS(1222), - [anon_sym___clrcall] = ACTIONS(1222), - [anon_sym___stdcall] = ACTIONS(1222), - [anon_sym___fastcall] = ACTIONS(1222), - [anon_sym___thiscall] = ACTIONS(1222), - [anon_sym___vectorcall] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [anon_sym_signed] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1222), - [anon_sym_long] = ACTIONS(1222), - [anon_sym_short] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_auto] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_inline] = ACTIONS(1222), - [anon_sym___inline] = ACTIONS(1222), - [anon_sym___inline__] = ACTIONS(1222), - [anon_sym___forceinline] = ACTIONS(1222), - [anon_sym_thread_local] = ACTIONS(1222), - [anon_sym___thread] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_constexpr] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym___restrict__] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym__Noreturn] = ACTIONS(1222), - [anon_sym_noreturn] = ACTIONS(1222), - [anon_sym__Nonnull] = ACTIONS(1222), - [anon_sym_alignas] = ACTIONS(1222), - [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_goto] = ACTIONS(1222), - [anon_sym___try] = ACTIONS(1222), - [anon_sym___leave] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_sizeof] = ACTIONS(1222), - [anon_sym___alignof__] = ACTIONS(1222), - [anon_sym___alignof] = ACTIONS(1222), - [anon_sym__alignof] = ACTIONS(1222), - [anon_sym_alignof] = ACTIONS(1222), - [anon_sym__Alignof] = ACTIONS(1222), - [anon_sym_offsetof] = ACTIONS(1222), - [anon_sym__Generic] = ACTIONS(1222), - [anon_sym_asm] = ACTIONS(1222), - [anon_sym___asm__] = ACTIONS(1222), - [anon_sym___asm] = ACTIONS(1222), - [sym_number_literal] = ACTIONS(1224), - [anon_sym_L_SQUOTE] = ACTIONS(1224), - [anon_sym_u_SQUOTE] = ACTIONS(1224), - [anon_sym_U_SQUOTE] = ACTIONS(1224), - [anon_sym_u8_SQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_L_DQUOTE] = ACTIONS(1224), - [anon_sym_u_DQUOTE] = ACTIONS(1224), - [anon_sym_U_DQUOTE] = ACTIONS(1224), - [anon_sym_u8_DQUOTE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), - [anon_sym_NULL] = ACTIONS(1222), - [anon_sym_nullptr] = ACTIONS(1222), - [sym_comment] = ACTIONS(3), - }, - [252] = { - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym___extension__] = ACTIONS(1190), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym___attribute] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym___inline] = ACTIONS(1190), - [anon_sym___inline__] = ACTIONS(1190), - [anon_sym___forceinline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym___thread] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [anon_sym__Nonnull] = ACTIONS(1190), - [anon_sym_alignas] = ACTIONS(1190), - [anon_sym__Alignas] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym___alignof__] = ACTIONS(1190), - [anon_sym___alignof] = ACTIONS(1190), - [anon_sym__alignof] = ACTIONS(1190), - [anon_sym_alignof] = ACTIONS(1190), - [anon_sym__Alignof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [anon_sym___asm] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [253] = { - [sym_identifier] = ACTIONS(1194), - [aux_sym_preproc_include_token1] = ACTIONS(1194), - [aux_sym_preproc_def_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), - [sym_preproc_directive] = ACTIONS(1194), - [anon_sym_LPAREN2] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym___extension__] = ACTIONS(1194), - [anon_sym_typedef] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym___attribute__] = ACTIONS(1194), - [anon_sym___attribute] = ACTIONS(1194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), - [anon_sym___declspec] = ACTIONS(1194), - [anon_sym___cdecl] = ACTIONS(1194), - [anon_sym___clrcall] = ACTIONS(1194), - [anon_sym___stdcall] = ACTIONS(1194), - [anon_sym___fastcall] = ACTIONS(1194), - [anon_sym___thiscall] = ACTIONS(1194), - [anon_sym___vectorcall] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1194), - [anon_sym_unsigned] = ACTIONS(1194), - [anon_sym_long] = ACTIONS(1194), - [anon_sym_short] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_auto] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_inline] = ACTIONS(1194), - [anon_sym___inline] = ACTIONS(1194), - [anon_sym___inline__] = ACTIONS(1194), - [anon_sym___forceinline] = ACTIONS(1194), - [anon_sym_thread_local] = ACTIONS(1194), - [anon_sym___thread] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_constexpr] = ACTIONS(1194), - [anon_sym_volatile] = ACTIONS(1194), - [anon_sym_restrict] = ACTIONS(1194), - [anon_sym___restrict__] = ACTIONS(1194), - [anon_sym__Atomic] = ACTIONS(1194), - [anon_sym__Noreturn] = ACTIONS(1194), - [anon_sym_noreturn] = ACTIONS(1194), - [anon_sym__Nonnull] = ACTIONS(1194), - [anon_sym_alignas] = ACTIONS(1194), - [anon_sym__Alignas] = ACTIONS(1194), - [sym_primitive_type] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_case] = ACTIONS(1194), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_goto] = ACTIONS(1194), - [anon_sym___try] = ACTIONS(1194), - [anon_sym___leave] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_sizeof] = ACTIONS(1194), - [anon_sym___alignof__] = ACTIONS(1194), - [anon_sym___alignof] = ACTIONS(1194), - [anon_sym__alignof] = ACTIONS(1194), - [anon_sym_alignof] = ACTIONS(1194), - [anon_sym__Alignof] = ACTIONS(1194), - [anon_sym_offsetof] = ACTIONS(1194), - [anon_sym__Generic] = ACTIONS(1194), - [anon_sym_asm] = ACTIONS(1194), - [anon_sym___asm__] = ACTIONS(1194), - [anon_sym___asm] = ACTIONS(1194), - [sym_number_literal] = ACTIONS(1196), - [anon_sym_L_SQUOTE] = ACTIONS(1196), - [anon_sym_u_SQUOTE] = ACTIONS(1196), - [anon_sym_U_SQUOTE] = ACTIONS(1196), - [anon_sym_u8_SQUOTE] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_L_DQUOTE] = ACTIONS(1196), - [anon_sym_u_DQUOTE] = ACTIONS(1196), - [anon_sym_U_DQUOTE] = ACTIONS(1196), - [anon_sym_u8_DQUOTE] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_true] = ACTIONS(1194), - [sym_false] = ACTIONS(1194), - [anon_sym_NULL] = ACTIONS(1194), - [anon_sym_nullptr] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - }, - [254] = { - [sym_identifier] = ACTIONS(1198), - [aux_sym_preproc_include_token1] = ACTIONS(1198), - [aux_sym_preproc_def_token1] = ACTIONS(1198), - [aux_sym_preproc_if_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1198), - [sym_preproc_directive] = ACTIONS(1198), - [anon_sym_LPAREN2] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym___extension__] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym___attribute__] = ACTIONS(1198), - [anon_sym___attribute] = ACTIONS(1198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1200), - [anon_sym___declspec] = ACTIONS(1198), - [anon_sym___cdecl] = ACTIONS(1198), - [anon_sym___clrcall] = ACTIONS(1198), - [anon_sym___stdcall] = ACTIONS(1198), - [anon_sym___fastcall] = ACTIONS(1198), - [anon_sym___thiscall] = ACTIONS(1198), - [anon_sym___vectorcall] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [anon_sym_signed] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_auto] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_inline] = ACTIONS(1198), - [anon_sym___inline] = ACTIONS(1198), - [anon_sym___inline__] = ACTIONS(1198), - [anon_sym___forceinline] = ACTIONS(1198), - [anon_sym_thread_local] = ACTIONS(1198), - [anon_sym___thread] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_constexpr] = ACTIONS(1198), - [anon_sym_volatile] = ACTIONS(1198), - [anon_sym_restrict] = ACTIONS(1198), - [anon_sym___restrict__] = ACTIONS(1198), - [anon_sym__Atomic] = ACTIONS(1198), - [anon_sym__Noreturn] = ACTIONS(1198), - [anon_sym_noreturn] = ACTIONS(1198), - [anon_sym__Nonnull] = ACTIONS(1198), - [anon_sym_alignas] = ACTIONS(1198), - [anon_sym__Alignas] = ACTIONS(1198), - [sym_primitive_type] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_switch] = ACTIONS(1198), - [anon_sym_case] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_goto] = ACTIONS(1198), - [anon_sym___try] = ACTIONS(1198), - [anon_sym___leave] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_sizeof] = ACTIONS(1198), - [anon_sym___alignof__] = ACTIONS(1198), - [anon_sym___alignof] = ACTIONS(1198), - [anon_sym__alignof] = ACTIONS(1198), - [anon_sym_alignof] = ACTIONS(1198), - [anon_sym__Alignof] = ACTIONS(1198), - [anon_sym_offsetof] = ACTIONS(1198), - [anon_sym__Generic] = ACTIONS(1198), - [anon_sym_asm] = ACTIONS(1198), - [anon_sym___asm__] = ACTIONS(1198), - [anon_sym___asm] = ACTIONS(1198), - [sym_number_literal] = ACTIONS(1200), - [anon_sym_L_SQUOTE] = ACTIONS(1200), - [anon_sym_u_SQUOTE] = ACTIONS(1200), - [anon_sym_U_SQUOTE] = ACTIONS(1200), - [anon_sym_u8_SQUOTE] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_L_DQUOTE] = ACTIONS(1200), - [anon_sym_u_DQUOTE] = ACTIONS(1200), - [anon_sym_U_DQUOTE] = ACTIONS(1200), - [anon_sym_u8_DQUOTE] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_true] = ACTIONS(1198), - [sym_false] = ACTIONS(1198), - [anon_sym_NULL] = ACTIONS(1198), - [anon_sym_nullptr] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(1180), - [sym_identifier] = ACTIONS(1178), - [aux_sym_preproc_include_token1] = ACTIONS(1178), - [aux_sym_preproc_def_token1] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym___extension__] = ACTIONS(1178), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1178), - [anon_sym___attribute] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1180), - [anon_sym___declspec] = ACTIONS(1178), - [anon_sym___cdecl] = ACTIONS(1178), - [anon_sym___clrcall] = ACTIONS(1178), - [anon_sym___stdcall] = ACTIONS(1178), - [anon_sym___fastcall] = ACTIONS(1178), - [anon_sym___thiscall] = ACTIONS(1178), - [anon_sym___vectorcall] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_signed] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym___inline] = ACTIONS(1178), - [anon_sym___inline__] = ACTIONS(1178), - [anon_sym___forceinline] = ACTIONS(1178), - [anon_sym_thread_local] = ACTIONS(1178), - [anon_sym___thread] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_constexpr] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym___restrict__] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym__Noreturn] = ACTIONS(1178), - [anon_sym_noreturn] = ACTIONS(1178), - [anon_sym__Nonnull] = ACTIONS(1178), - [anon_sym_alignas] = ACTIONS(1178), - [anon_sym__Alignas] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym___try] = ACTIONS(1178), - [anon_sym___leave] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1178), - [anon_sym___alignof__] = ACTIONS(1178), - [anon_sym___alignof] = ACTIONS(1178), - [anon_sym__alignof] = ACTIONS(1178), - [anon_sym_alignof] = ACTIONS(1178), - [anon_sym__Alignof] = ACTIONS(1178), - [anon_sym_offsetof] = ACTIONS(1178), - [anon_sym__Generic] = ACTIONS(1178), - [anon_sym_asm] = ACTIONS(1178), - [anon_sym___asm__] = ACTIONS(1178), - [anon_sym___asm] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1180), - [anon_sym_L_SQUOTE] = ACTIONS(1180), - [anon_sym_u_SQUOTE] = ACTIONS(1180), - [anon_sym_U_SQUOTE] = ACTIONS(1180), - [anon_sym_u8_SQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_L_DQUOTE] = ACTIONS(1180), - [anon_sym_u_DQUOTE] = ACTIONS(1180), - [anon_sym_U_DQUOTE] = ACTIONS(1180), - [anon_sym_u8_DQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [anon_sym_NULL] = ACTIONS(1178), - [anon_sym_nullptr] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - }, - [256] = { - [sym_identifier] = ACTIONS(1194), - [aux_sym_preproc_include_token1] = ACTIONS(1194), - [aux_sym_preproc_def_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token1] = ACTIONS(1194), - [aux_sym_preproc_if_token2] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1194), - [sym_preproc_directive] = ACTIONS(1194), - [anon_sym_LPAREN2] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym___extension__] = ACTIONS(1194), - [anon_sym_typedef] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym___attribute__] = ACTIONS(1194), - [anon_sym___attribute] = ACTIONS(1194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1196), - [anon_sym___declspec] = ACTIONS(1194), - [anon_sym___cdecl] = ACTIONS(1194), - [anon_sym___clrcall] = ACTIONS(1194), - [anon_sym___stdcall] = ACTIONS(1194), - [anon_sym___fastcall] = ACTIONS(1194), - [anon_sym___thiscall] = ACTIONS(1194), - [anon_sym___vectorcall] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_signed] = ACTIONS(1194), - [anon_sym_unsigned] = ACTIONS(1194), - [anon_sym_long] = ACTIONS(1194), - [anon_sym_short] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_auto] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_inline] = ACTIONS(1194), - [anon_sym___inline] = ACTIONS(1194), - [anon_sym___inline__] = ACTIONS(1194), - [anon_sym___forceinline] = ACTIONS(1194), - [anon_sym_thread_local] = ACTIONS(1194), - [anon_sym___thread] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_constexpr] = ACTIONS(1194), - [anon_sym_volatile] = ACTIONS(1194), - [anon_sym_restrict] = ACTIONS(1194), - [anon_sym___restrict__] = ACTIONS(1194), - [anon_sym__Atomic] = ACTIONS(1194), - [anon_sym__Noreturn] = ACTIONS(1194), - [anon_sym_noreturn] = ACTIONS(1194), - [anon_sym__Nonnull] = ACTIONS(1194), - [anon_sym_alignas] = ACTIONS(1194), - [anon_sym__Alignas] = ACTIONS(1194), - [sym_primitive_type] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_case] = ACTIONS(1194), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_goto] = ACTIONS(1194), - [anon_sym___try] = ACTIONS(1194), - [anon_sym___leave] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_sizeof] = ACTIONS(1194), - [anon_sym___alignof__] = ACTIONS(1194), - [anon_sym___alignof] = ACTIONS(1194), - [anon_sym__alignof] = ACTIONS(1194), - [anon_sym_alignof] = ACTIONS(1194), - [anon_sym__Alignof] = ACTIONS(1194), - [anon_sym_offsetof] = ACTIONS(1194), - [anon_sym__Generic] = ACTIONS(1194), - [anon_sym_asm] = ACTIONS(1194), - [anon_sym___asm__] = ACTIONS(1194), - [anon_sym___asm] = ACTIONS(1194), - [sym_number_literal] = ACTIONS(1196), - [anon_sym_L_SQUOTE] = ACTIONS(1196), - [anon_sym_u_SQUOTE] = ACTIONS(1196), - [anon_sym_U_SQUOTE] = ACTIONS(1196), - [anon_sym_u8_SQUOTE] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_L_DQUOTE] = ACTIONS(1196), - [anon_sym_u_DQUOTE] = ACTIONS(1196), - [anon_sym_U_DQUOTE] = ACTIONS(1196), - [anon_sym_u8_DQUOTE] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_true] = ACTIONS(1194), - [sym_false] = ACTIONS(1194), - [anon_sym_NULL] = ACTIONS(1194), - [anon_sym_nullptr] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym___extension__] = ACTIONS(1368), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym___attribute] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym___inline] = ACTIONS(1368), - [anon_sym___inline__] = ACTIONS(1368), - [anon_sym___forceinline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym__Nonnull] = ACTIONS(1368), - [anon_sym_alignas] = ACTIONS(1368), - [anon_sym__Alignas] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym___alignof__] = ACTIONS(1368), - [anon_sym___alignof] = ACTIONS(1368), - [anon_sym__alignof] = ACTIONS(1368), - [anon_sym_alignof] = ACTIONS(1368), - [anon_sym__Alignof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [anon_sym___asm] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [258] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym___attribute] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym__Nonnull] = ACTIONS(1352), - [anon_sym_alignas] = ACTIONS(1352), - [anon_sym__Alignas] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym___try] = ACTIONS(1352), - [anon_sym___leave] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [anon_sym___asm] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [STATE(99)] = { + [sym_expression] = STATE(1309), + [sym__string] = STATE(586), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1256), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym___attribute] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym___extension__] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym___attribute] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym___inline] = ACTIONS(1356), - [anon_sym___inline__] = ACTIONS(1356), - [anon_sym___forceinline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [anon_sym__Nonnull] = ACTIONS(1356), - [anon_sym_alignas] = ACTIONS(1356), - [anon_sym__Alignas] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym___try] = ACTIONS(1356), - [anon_sym___leave] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym___alignof__] = ACTIONS(1356), - [anon_sym___alignof] = ACTIONS(1356), - [anon_sym__alignof] = ACTIONS(1356), - [anon_sym_alignof] = ACTIONS(1356), - [anon_sym__Alignof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [anon_sym___asm] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [STATE(100)] = { + [sym_expression] = STATE(1309), + [sym__string] = STATE(586), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1256), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym___attribute] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [260] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym___extension__] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym___attribute] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym___inline] = ACTIONS(1364), - [anon_sym___inline__] = ACTIONS(1364), - [anon_sym___forceinline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym___thread] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym__Nonnull] = ACTIONS(1364), - [anon_sym_alignas] = ACTIONS(1364), - [anon_sym__Alignas] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym___try] = ACTIONS(1364), - [anon_sym___leave] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym___alignof__] = ACTIONS(1364), - [anon_sym___alignof] = ACTIONS(1364), - [anon_sym__alignof] = ACTIONS(1364), - [anon_sym_alignof] = ACTIONS(1364), - [anon_sym__Alignof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [anon_sym___asm] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), + [STATE(101)] = { + [sym_expression] = STATE(1309), + [sym__string] = STATE(586), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1256), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym___attribute] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [261] = { - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym___extension__] = ACTIONS(1368), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym___attribute] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym___inline] = ACTIONS(1368), - [anon_sym___inline__] = ACTIONS(1368), - [anon_sym___forceinline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [anon_sym__Nonnull] = ACTIONS(1368), - [anon_sym_alignas] = ACTIONS(1368), - [anon_sym__Alignas] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym___try] = ACTIONS(1368), - [anon_sym___leave] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym___alignof__] = ACTIONS(1368), - [anon_sym___alignof] = ACTIONS(1368), - [anon_sym__alignof] = ACTIONS(1368), - [anon_sym_alignof] = ACTIONS(1368), - [anon_sym__Alignof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [anon_sym___asm] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [STATE(102)] = { + [sym_expression] = STATE(1309), + [sym__string] = STATE(586), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1256), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym___attribute] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [262] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym___extension__] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym___attribute] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = 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(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym__Nonnull] = ACTIONS(1360), - [anon_sym_alignas] = ACTIONS(1360), - [anon_sym__Alignas] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym___try] = ACTIONS(1360), - [anon_sym___leave] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym___alignof__] = ACTIONS(1360), - [anon_sym___alignof] = ACTIONS(1360), - [anon_sym__alignof] = ACTIONS(1360), - [anon_sym_alignof] = ACTIONS(1360), - [anon_sym__Alignof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [anon_sym___asm] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [STATE(103)] = { + [sym_expression] = STATE(1355), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1168), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1168), + [sym_call_expression] = STATE(1168), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1168), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1168), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1277), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym___attribute] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym___extension__] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym___attribute] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym___inline] = ACTIONS(1372), - [anon_sym___inline__] = ACTIONS(1372), - [anon_sym___forceinline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym__Nonnull] = ACTIONS(1372), - [anon_sym_alignas] = ACTIONS(1372), - [anon_sym__Alignas] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym___try] = ACTIONS(1372), - [anon_sym___leave] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym___alignof__] = ACTIONS(1372), - [anon_sym___alignof] = ACTIONS(1372), - [anon_sym__alignof] = ACTIONS(1372), - [anon_sym_alignof] = ACTIONS(1372), - [anon_sym__Alignof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [anon_sym___asm] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [STATE(104)] = { + [sym_expression] = STATE(1309), + [sym__string] = STATE(586), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1256), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym___attribute] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [264] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym___attribute] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym__Nonnull] = ACTIONS(1336), - [anon_sym_alignas] = ACTIONS(1336), - [anon_sym__Alignas] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [anon_sym___asm] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [265] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym___extension__] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym___attribute] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym___inline] = ACTIONS(1376), - [anon_sym___inline__] = ACTIONS(1376), - [anon_sym___forceinline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym__Nonnull] = ACTIONS(1376), - [anon_sym_alignas] = ACTIONS(1376), - [anon_sym__Alignas] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym___try] = ACTIONS(1376), - [anon_sym___leave] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym___alignof__] = ACTIONS(1376), - [anon_sym___alignof] = ACTIONS(1376), - [anon_sym__alignof] = ACTIONS(1376), - [anon_sym_alignof] = ACTIONS(1376), - [anon_sym__Alignof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [anon_sym___asm] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [STATE(105)] = { + [sym_expression] = STATE(1311), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2211), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym___attribute] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym__Nonnull] = ACTIONS(1272), - [anon_sym_alignas] = ACTIONS(1272), - [anon_sym__Alignas] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym___try] = ACTIONS(1272), - [anon_sym___leave] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [anon_sym___asm] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [267] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym___attribute] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym__Nonnull] = ACTIONS(1276), - [anon_sym_alignas] = ACTIONS(1276), - [anon_sym__Alignas] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym___try] = ACTIONS(1276), - [anon_sym___leave] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [anon_sym___asm] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [268] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym___attribute] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym__Nonnull] = ACTIONS(1292), - [anon_sym_alignas] = ACTIONS(1292), - [anon_sym__Alignas] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [anon_sym___asm] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [269] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym___attribute] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym__Nonnull] = ACTIONS(1300), - [anon_sym_alignas] = ACTIONS(1300), - [anon_sym__Alignas] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym___try] = ACTIONS(1300), - [anon_sym___leave] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [anon_sym___asm] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [270] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym___extension__] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym___attribute] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym___inline] = ACTIONS(1340), - [anon_sym___inline__] = ACTIONS(1340), - [anon_sym___forceinline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym__Nonnull] = ACTIONS(1340), - [anon_sym_alignas] = ACTIONS(1340), - [anon_sym__Alignas] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym___try] = ACTIONS(1340), - [anon_sym___leave] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym___alignof__] = ACTIONS(1340), - [anon_sym___alignof] = ACTIONS(1340), - [anon_sym__alignof] = ACTIONS(1340), - [anon_sym_alignof] = ACTIONS(1340), - [anon_sym__Alignof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [anon_sym___asm] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [STATE(106)] = { + [sym_expression] = STATE(1317), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2144), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym___attribute] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym__Nonnull] = ACTIONS(1304), - [anon_sym_alignas] = ACTIONS(1304), - [anon_sym__Alignas] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [anon_sym___asm] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [272] = { - [sym_identifier] = ACTIONS(1262), - [aux_sym_preproc_include_token1] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), - [sym_preproc_directive] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym___extension__] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym___attribute__] = ACTIONS(1262), - [anon_sym___attribute] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), - [anon_sym___declspec] = ACTIONS(1262), - [anon_sym___cdecl] = ACTIONS(1262), - [anon_sym___clrcall] = ACTIONS(1262), - [anon_sym___stdcall] = ACTIONS(1262), - [anon_sym___fastcall] = ACTIONS(1262), - [anon_sym___thiscall] = ACTIONS(1262), - [anon_sym___vectorcall] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1262), - [anon_sym_unsigned] = ACTIONS(1262), - [anon_sym_long] = ACTIONS(1262), - [anon_sym_short] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_auto] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_inline] = ACTIONS(1262), - [anon_sym___inline] = ACTIONS(1262), - [anon_sym___inline__] = ACTIONS(1262), - [anon_sym___forceinline] = ACTIONS(1262), - [anon_sym_thread_local] = ACTIONS(1262), - [anon_sym___thread] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_constexpr] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1262), - [anon_sym_restrict] = ACTIONS(1262), - [anon_sym___restrict__] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1262), - [anon_sym__Noreturn] = ACTIONS(1262), - [anon_sym_noreturn] = ACTIONS(1262), - [anon_sym__Nonnull] = ACTIONS(1262), - [anon_sym_alignas] = ACTIONS(1262), - [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1262), - [anon_sym___try] = ACTIONS(1262), - [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1262), - [anon_sym___alignof__] = ACTIONS(1262), - [anon_sym___alignof] = ACTIONS(1262), - [anon_sym__alignof] = ACTIONS(1262), - [anon_sym_alignof] = ACTIONS(1262), - [anon_sym__Alignof] = ACTIONS(1262), - [anon_sym_offsetof] = ACTIONS(1262), - [anon_sym__Generic] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1262), - [anon_sym___asm__] = ACTIONS(1262), - [anon_sym___asm] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - }, - [273] = { - [sym_expression] = STATE(700), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(682), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(682), - [sym_call_expression] = STATE(682), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(682), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(682), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym___attribute] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_STAR_EQ] = ACTIONS(1388), - [anon_sym_SLASH_EQ] = ACTIONS(1388), - [anon_sym_PERCENT_EQ] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1388), - [anon_sym_DASH_EQ] = ACTIONS(1388), - [anon_sym_LT_LT_EQ] = ACTIONS(1388), - [anon_sym_GT_GT_EQ] = ACTIONS(1388), - [anon_sym_AMP_EQ] = ACTIONS(1388), - [anon_sym_CARET_EQ] = ACTIONS(1388), - [anon_sym_PIPE_EQ] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1400), + [STATE(107)] = { + [sym_expression] = STATE(1302), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), [anon_sym___alignof__] = ACTIONS(87), [anon_sym___alignof] = ACTIONS(87), [anon_sym__alignof] = ACTIONS(87), @@ -45141,9 +30463,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(93), [anon_sym___asm__] = ACTIONS(93), [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), [anon_sym_L_SQUOTE] = ACTIONS(97), [anon_sym_u_SQUOTE] = ACTIONS(97), [anon_sym_U_SQUOTE] = ACTIONS(97), @@ -45154,2359 +30476,2221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(99), [anon_sym_u8_DQUOTE] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), [anon_sym_NULL] = ACTIONS(103), [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [274] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym___attribute] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym__Nonnull] = ACTIONS(1268), - [anon_sym_alignas] = ACTIONS(1268), - [anon_sym__Alignas] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [anon_sym___asm] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [275] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), + [STATE(108)] = { + [sym_expression] = STATE(1278), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2175), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(109)] = { + [sym_expression] = STATE(1360), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1088), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1088), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1088), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1294), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym___attribute] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym__Nonnull] = ACTIONS(1296), - [anon_sym_alignas] = ACTIONS(1296), - [anon_sym__Alignas] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym___try] = ACTIONS(1296), - [anon_sym___leave] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [anon_sym___asm] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [276] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym___attribute] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym__Nonnull] = ACTIONS(1308), - [anon_sym_alignas] = ACTIONS(1308), - [anon_sym__Alignas] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [anon_sym___asm] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), [anon_sym_NULL] = ACTIONS(1308), [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [277] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym___attribute] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym__Nonnull] = ACTIONS(1316), - [anon_sym_alignas] = ACTIONS(1316), - [anon_sym__Alignas] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [anon_sym___asm] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [278] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym___attribute] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym__Nonnull] = ACTIONS(1320), - [anon_sym_alignas] = ACTIONS(1320), - [anon_sym__Alignas] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [anon_sym___asm] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - }, - [279] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym___attribute] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym__Nonnull] = ACTIONS(1324), - [anon_sym_alignas] = ACTIONS(1324), - [anon_sym__Alignas] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [anon_sym___asm] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [280] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym___attribute] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym__Nonnull] = ACTIONS(1328), - [anon_sym_alignas] = ACTIONS(1328), - [anon_sym__Alignas] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym___try] = ACTIONS(1328), - [anon_sym___leave] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [anon_sym___asm] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), - [sym_comment] = ACTIONS(3), - }, - [281] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym___attribute] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym__Nonnull] = ACTIONS(1332), - [anon_sym_alignas] = ACTIONS(1332), - [anon_sym__Alignas] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym___try] = ACTIONS(1332), - [anon_sym___leave] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [anon_sym___asm] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, - [282] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1348), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym___attribute] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym___inline] = ACTIONS(1348), - [anon_sym___inline__] = ACTIONS(1348), - [anon_sym___forceinline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym__Nonnull] = ACTIONS(1348), - [anon_sym_alignas] = ACTIONS(1348), - [anon_sym__Alignas] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym___try] = ACTIONS(1348), - [anon_sym___leave] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym___alignof__] = ACTIONS(1348), - [anon_sym___alignof] = ACTIONS(1348), - [anon_sym__alignof] = ACTIONS(1348), - [anon_sym_alignof] = ACTIONS(1348), - [anon_sym__Alignof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [anon_sym___asm] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), + [STATE(110)] = { + [sym_expression] = STATE(1384), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1088), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1088), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1088), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1294), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym___attribute] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym__Nonnull] = ACTIONS(1280), - [anon_sym_alignas] = ACTIONS(1280), - [anon_sym__Alignas] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [anon_sym___asm] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [284] = { + [STATE(111)] = { + [sym_expression] = STATE(926), + [sym__string] = STATE(586), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym___attribute] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym__Nonnull] = ACTIONS(1284), - [anon_sym_alignas] = ACTIONS(1284), - [anon_sym__Alignas] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [anon_sym___asm] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym___attribute] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym__Nonnull] = ACTIONS(1312), - [anon_sym_alignas] = ACTIONS(1312), - [anon_sym__Alignas] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [anon_sym___asm] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [286] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym___attribute] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [anon_sym__Nonnull] = ACTIONS(1304), - [anon_sym_alignas] = ACTIONS(1304), - [anon_sym__Alignas] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [anon_sym___asm] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [287] = { - [sym_identifier] = ACTIONS(1262), - [aux_sym_preproc_include_token1] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1262), - [aux_sym_preproc_if_token2] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), - [sym_preproc_directive] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym___extension__] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym___attribute__] = ACTIONS(1262), - [anon_sym___attribute] = ACTIONS(1262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), - [anon_sym___declspec] = ACTIONS(1262), - [anon_sym___cdecl] = ACTIONS(1262), - [anon_sym___clrcall] = ACTIONS(1262), - [anon_sym___stdcall] = ACTIONS(1262), - [anon_sym___fastcall] = ACTIONS(1262), - [anon_sym___thiscall] = ACTIONS(1262), - [anon_sym___vectorcall] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1262), - [anon_sym_unsigned] = ACTIONS(1262), - [anon_sym_long] = ACTIONS(1262), - [anon_sym_short] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_auto] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_inline] = ACTIONS(1262), - [anon_sym___inline] = ACTIONS(1262), - [anon_sym___inline__] = ACTIONS(1262), - [anon_sym___forceinline] = ACTIONS(1262), - [anon_sym_thread_local] = ACTIONS(1262), - [anon_sym___thread] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_constexpr] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1262), - [anon_sym_restrict] = ACTIONS(1262), - [anon_sym___restrict__] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1262), - [anon_sym__Noreturn] = ACTIONS(1262), - [anon_sym_noreturn] = ACTIONS(1262), - [anon_sym__Nonnull] = ACTIONS(1262), - [anon_sym_alignas] = ACTIONS(1262), - [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1262), - [anon_sym___try] = ACTIONS(1262), - [anon_sym___leave] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1262), - [anon_sym___alignof__] = ACTIONS(1262), - [anon_sym___alignof] = ACTIONS(1262), - [anon_sym__alignof] = ACTIONS(1262), - [anon_sym_alignof] = ACTIONS(1262), - [anon_sym__Alignof] = ACTIONS(1262), - [anon_sym_offsetof] = ACTIONS(1262), - [anon_sym__Generic] = ACTIONS(1262), - [anon_sym_asm] = ACTIONS(1262), - [anon_sym___asm__] = ACTIONS(1262), - [anon_sym___asm] = ACTIONS(1262), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - }, - [288] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym___attribute] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [anon_sym__Nonnull] = ACTIONS(1344), - [anon_sym_alignas] = ACTIONS(1344), - [anon_sym__Alignas] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym___try] = ACTIONS(1344), - [anon_sym___leave] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [anon_sym___asm] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [289] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym___attribute] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym__Nonnull] = ACTIONS(1352), - [anon_sym_alignas] = ACTIONS(1352), - [anon_sym__Alignas] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym___try] = ACTIONS(1352), - [anon_sym___leave] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [anon_sym___asm] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym___extension__] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym___attribute] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym___inline] = ACTIONS(1364), - [anon_sym___inline__] = ACTIONS(1364), - [anon_sym___forceinline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym___thread] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [anon_sym__Nonnull] = ACTIONS(1364), - [anon_sym_alignas] = ACTIONS(1364), - [anon_sym__Alignas] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym___try] = ACTIONS(1364), - [anon_sym___leave] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym___alignof__] = ACTIONS(1364), - [anon_sym___alignof] = ACTIONS(1364), - [anon_sym__alignof] = ACTIONS(1364), - [anon_sym_alignof] = ACTIONS(1364), - [anon_sym__Alignof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [anon_sym___asm] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), + [STATE(112)] = { + [sym_expression] = STATE(1353), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1088), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1088), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1088), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1294), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [291] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym___extension__] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym___attribute] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = 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(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [anon_sym__Nonnull] = ACTIONS(1360), - [anon_sym_alignas] = ACTIONS(1360), - [anon_sym__Alignas] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym___try] = ACTIONS(1360), - [anon_sym___leave] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym___alignof__] = ACTIONS(1360), - [anon_sym___alignof] = ACTIONS(1360), - [anon_sym__alignof] = ACTIONS(1360), - [anon_sym_alignof] = ACTIONS(1360), - [anon_sym__Alignof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [anon_sym___asm] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [STATE(113)] = { + [sym_expression] = STATE(1390), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1088), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1088), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1088), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [292] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token2] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym___extension__] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym___attribute] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym___inline] = ACTIONS(1372), - [anon_sym___inline__] = ACTIONS(1372), - [anon_sym___forceinline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [anon_sym__Nonnull] = ACTIONS(1372), - [anon_sym_alignas] = ACTIONS(1372), - [anon_sym__Alignas] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym___try] = ACTIONS(1372), - [anon_sym___leave] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym___alignof__] = ACTIONS(1372), - [anon_sym___alignof] = ACTIONS(1372), - [anon_sym__alignof] = ACTIONS(1372), - [anon_sym_alignof] = ACTIONS(1372), - [anon_sym__Alignof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [anon_sym___asm] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [STATE(114)] = { + [sym_expression] = STATE(926), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1168), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1168), + [sym_call_expression] = STATE(1168), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1168), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1168), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(115)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2152), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(116)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2230), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(117)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2094), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(118)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2074), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(119)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2178), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(120)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2252), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(121)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2052), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(122)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2068), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(123)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2117), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(124)] = { + [sym_declaration] = STATE(671), + [sym__declaration_modifiers] = STATE(922), + [sym__declaration_specifiers] = STATE(1440), + [sym_attribute_specifier] = STATE(922), + [sym_attribute_declaration] = STATE(922), + [sym_ms_declspec_modifier] = STATE(922), + [sym_storage_class_specifier] = STATE(922), + [sym_type_qualifier] = STATE(922), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__for_statement_body] = STATE(2186), + [sym_expression] = STATE(1333), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2058), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(801), + [anon_sym_unsigned] = ACTIONS(801), + [anon_sym_long] = ACTIONS(801), + [anon_sym_short] = ACTIONS(801), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [293] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym___attribute] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym__Nonnull] = ACTIONS(1336), - [anon_sym_alignas] = ACTIONS(1336), - [anon_sym__Alignas] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [anon_sym___asm] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [294] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym___attribute] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym__Nonnull] = ACTIONS(1276), - [anon_sym_alignas] = ACTIONS(1276), - [anon_sym__Alignas] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym___try] = ACTIONS(1276), - [anon_sym___leave] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [anon_sym___asm] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [295] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym___attribute] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym__Nonnull] = ACTIONS(1292), - [anon_sym_alignas] = ACTIONS(1292), - [anon_sym__Alignas] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [anon_sym___asm] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym___attribute] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym__Nonnull] = ACTIONS(1300), - [anon_sym_alignas] = ACTIONS(1300), - [anon_sym__Alignas] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym___try] = ACTIONS(1300), - [anon_sym___leave] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [anon_sym___asm] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [297] = { + [STATE(125)] = { + [sym_expression] = STATE(1266), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1324), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(126)] = { + [sym_else_clause] = STATE(137), [sym_identifier] = ACTIONS(1340), [aux_sym_preproc_include_token1] = ACTIONS(1340), [aux_sym_preproc_def_token1] = ACTIONS(1340), @@ -47514,6 +32698,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1340), [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [aux_sym_preproc_else_token1] = ACTIONS(1340), + [aux_sym_preproc_elif_token1] = ACTIONS(1340), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1340), [sym_preproc_directive] = ACTIONS(1340), [anon_sym_LPAREN2] = ACTIONS(1342), [anon_sym_BANG] = ACTIONS(1342), @@ -47528,6 +32716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1340), [anon_sym___attribute__] = ACTIONS(1340), [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), [anon_sym___declspec] = ACTIONS(1340), [anon_sym___cdecl] = ACTIONS(1340), @@ -47550,7 +32739,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1340), [anon_sym_thread_local] = ACTIONS(1340), [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), [anon_sym_constexpr] = ACTIONS(1340), [anon_sym_volatile] = ACTIONS(1340), [anon_sym_restrict] = ACTIONS(1340), @@ -47566,6 +32754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1340), [anon_sym_union] = ACTIONS(1340), [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1344), [anon_sym_switch] = ACTIONS(1340), [anon_sym_case] = ACTIONS(1340), [anon_sym_default] = ACTIONS(1340), @@ -47608,745 +32797,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym___attribute] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym__Nonnull] = ACTIONS(1268), - [anon_sym_alignas] = ACTIONS(1268), - [anon_sym__Alignas] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [anon_sym___asm] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [299] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym___attribute] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym__Nonnull] = ACTIONS(1296), - [anon_sym_alignas] = ACTIONS(1296), - [anon_sym__Alignas] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym___try] = ACTIONS(1296), - [anon_sym___leave] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [anon_sym___asm] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [300] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym___attribute] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym__Nonnull] = ACTIONS(1308), - [anon_sym_alignas] = ACTIONS(1308), - [anon_sym__Alignas] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [anon_sym___asm] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [301] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym___attribute] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym__Nonnull] = ACTIONS(1316), - [anon_sym_alignas] = ACTIONS(1316), - [anon_sym__Alignas] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [anon_sym___asm] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [302] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym___attribute] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym__Nonnull] = ACTIONS(1324), - [anon_sym_alignas] = ACTIONS(1324), - [anon_sym__Alignas] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [anon_sym___asm] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [303] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym___attribute] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym__Nonnull] = ACTIONS(1328), - [anon_sym_alignas] = ACTIONS(1328), - [anon_sym__Alignas] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym___try] = ACTIONS(1328), - [anon_sym___leave] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [anon_sym___asm] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), - [sym_comment] = ACTIONS(3), - }, - [304] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym___attribute] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym__Nonnull] = ACTIONS(1332), - [anon_sym_alignas] = ACTIONS(1332), - [anon_sym__Alignas] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym___try] = ACTIONS(1332), - [anon_sym___leave] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [anon_sym___asm] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, - [305] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token2] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1348), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym___attribute] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), + [STATE(127)] = { + [sym_else_clause] = STATE(137), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [aux_sym_preproc_else_token1] = ACTIONS(1340), + [aux_sym_preproc_elif_token1] = ACTIONS(1340), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [anon_sym__Nonnull] = ACTIONS(1340), + [anon_sym_alignas] = ACTIONS(1340), + [anon_sym__Alignas] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [anon_sym___asm] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + }, + [STATE(128)] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [aux_sym_preproc_else_token1] = ACTIONS(1348), + [aux_sym_preproc_elif_token1] = ACTIONS(1348), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___attribute] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), [anon_sym___clrcall] = ACTIONS(1348), [anon_sym___stdcall] = ACTIONS(1348), [anon_sym___fastcall] = ACTIONS(1348), @@ -48366,7 +32954,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1348), [anon_sym_thread_local] = ACTIONS(1348), [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), [anon_sym_constexpr] = ACTIONS(1348), [anon_sym_volatile] = ACTIONS(1348), [anon_sym_restrict] = ACTIONS(1348), @@ -48382,6 +32969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1348), [anon_sym_union] = ACTIONS(1348), [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), [anon_sym_switch] = ACTIONS(1348), [anon_sym_case] = ACTIONS(1348), [anon_sym_default] = ACTIONS(1348), @@ -48424,415 +33012,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym___attribute] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym__Nonnull] = ACTIONS(1280), - [anon_sym_alignas] = ACTIONS(1280), - [anon_sym__Alignas] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [anon_sym___asm] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [307] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym___attribute] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym__Nonnull] = ACTIONS(1284), - [anon_sym_alignas] = ACTIONS(1284), - [anon_sym__Alignas] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [anon_sym___asm] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [308] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym___attribute] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym__Nonnull] = ACTIONS(1288), - [anon_sym_alignas] = ACTIONS(1288), - [anon_sym__Alignas] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym___try] = ACTIONS(1288), - [anon_sym___leave] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [anon_sym___asm] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - }, - [309] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym___attribute] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym__Nonnull] = ACTIONS(1312), - [anon_sym_alignas] = ACTIONS(1312), - [anon_sym__Alignas] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [anon_sym___asm] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [310] = { + [STATE(129)] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [aux_sym_preproc_else_token1] = ACTIONS(1352), + [aux_sym_preproc_elif_token1] = ACTIONS(1352), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___attribute] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [anon_sym__Nonnull] = ACTIONS(1352), + [anon_sym_alignas] = ACTIONS(1352), + [anon_sym__Alignas] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [anon_sym___asm] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + }, + [STATE(130)] = { [sym_identifier] = ACTIONS(1356), [aux_sym_preproc_include_token1] = ACTIONS(1356), [aux_sym_preproc_def_token1] = ACTIONS(1356), @@ -48840,6 +33127,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1356), [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [aux_sym_preproc_else_token1] = ACTIONS(1356), + [aux_sym_preproc_elif_token1] = ACTIONS(1356), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1356), [sym_preproc_directive] = ACTIONS(1356), [anon_sym_LPAREN2] = ACTIONS(1358), [anon_sym_BANG] = ACTIONS(1358), @@ -48854,6 +33145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1356), [anon_sym___attribute__] = ACTIONS(1356), [anon_sym___attribute] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), [anon_sym___declspec] = ACTIONS(1356), [anon_sym___cdecl] = ACTIONS(1356), @@ -48876,7 +33168,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1356), [anon_sym_thread_local] = ACTIONS(1356), [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), [anon_sym_constexpr] = ACTIONS(1356), [anon_sym_volatile] = ACTIONS(1356), [anon_sym_restrict] = ACTIONS(1356), @@ -48892,6 +33183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1356), [anon_sym_union] = ACTIONS(1356), [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), [anon_sym_switch] = ACTIONS(1356), [anon_sym_case] = ACTIONS(1356), [anon_sym_default] = ACTIONS(1356), @@ -48934,7 +33226,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [311] = { + [STATE(131)] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1360), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = 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_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [STATE(132)] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [aux_sym_preproc_else_token1] = ACTIONS(1364), + [aux_sym_preproc_elif_token1] = ACTIONS(1364), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___attribute] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [anon_sym__Nonnull] = ACTIONS(1364), + [anon_sym_alignas] = ACTIONS(1364), + [anon_sym__Alignas] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [anon_sym___asm] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + }, + [STATE(133)] = { [sym_identifier] = ACTIONS(1368), [aux_sym_preproc_include_token1] = ACTIONS(1368), [aux_sym_preproc_def_token1] = ACTIONS(1368), @@ -48942,6 +33448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1368), [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [aux_sym_preproc_else_token1] = ACTIONS(1368), + [aux_sym_preproc_elif_token1] = ACTIONS(1368), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1368), [sym_preproc_directive] = ACTIONS(1368), [anon_sym_LPAREN2] = ACTIONS(1370), [anon_sym_BANG] = ACTIONS(1370), @@ -48956,6 +33466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1368), [anon_sym___attribute__] = ACTIONS(1368), [anon_sym___attribute] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), [anon_sym___declspec] = ACTIONS(1368), [anon_sym___cdecl] = ACTIONS(1368), @@ -48978,7 +33489,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1368), [anon_sym_thread_local] = ACTIONS(1368), [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), [anon_sym_constexpr] = ACTIONS(1368), [anon_sym_volatile] = ACTIONS(1368), [anon_sym_restrict] = ACTIONS(1368), @@ -48994,6 +33504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1368), [anon_sym_union] = ACTIONS(1368), [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), [anon_sym_switch] = ACTIONS(1368), [anon_sym_case] = ACTIONS(1368), [anon_sym_default] = ACTIONS(1368), @@ -49036,827 +33547,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token2] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym___extension__] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym___attribute] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym___inline] = ACTIONS(1376), - [anon_sym___inline__] = ACTIONS(1376), - [anon_sym___forceinline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [anon_sym__Nonnull] = ACTIONS(1376), - [anon_sym_alignas] = ACTIONS(1376), - [anon_sym__Alignas] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym___try] = ACTIONS(1376), - [anon_sym___leave] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym___alignof__] = ACTIONS(1376), - [anon_sym___alignof] = ACTIONS(1376), - [anon_sym__alignof] = ACTIONS(1376), - [anon_sym_alignof] = ACTIONS(1376), - [anon_sym__Alignof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [anon_sym___asm] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - }, - [313] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym___attribute] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym__Nonnull] = ACTIONS(1272), - [anon_sym_alignas] = ACTIONS(1272), - [anon_sym__Alignas] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym___try] = ACTIONS(1272), - [anon_sym___leave] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [anon_sym___asm] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [314] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym___attribute] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym__Nonnull] = ACTIONS(1320), - [anon_sym_alignas] = ACTIONS(1320), - [anon_sym__Alignas] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [anon_sym___asm] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - }, - [315] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym___attribute] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [anon_sym__Nonnull] = ACTIONS(1312), - [anon_sym_alignas] = ACTIONS(1312), - [anon_sym__Alignas] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [anon_sym___asm] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [316] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym___attribute] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [anon_sym__Nonnull] = ACTIONS(1344), - [anon_sym_alignas] = ACTIONS(1344), - [anon_sym__Alignas] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym___try] = ACTIONS(1344), - [anon_sym___leave] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [anon_sym___asm] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [317] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym___attribute] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym__Nonnull] = ACTIONS(1288), - [anon_sym_alignas] = ACTIONS(1288), - [anon_sym__Alignas] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym___try] = ACTIONS(1288), - [anon_sym___leave] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [anon_sym___asm] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - }, - [318] = { - [sym_expression] = STATE(700), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(682), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(682), - [sym_call_expression] = STATE(682), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(682), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(682), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(714), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1388), - [aux_sym_preproc_if_token2] = ACTIONS(1388), - [aux_sym_preproc_else_token1] = ACTIONS(1388), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_STAR_EQ] = ACTIONS(1388), - [anon_sym_SLASH_EQ] = ACTIONS(1388), - [anon_sym_PERCENT_EQ] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1388), - [anon_sym_DASH_EQ] = ACTIONS(1388), - [anon_sym_LT_LT_EQ] = ACTIONS(1388), - [anon_sym_GT_GT_EQ] = ACTIONS(1388), - [anon_sym_AMP_EQ] = ACTIONS(1388), - [anon_sym_CARET_EQ] = ACTIONS(1388), - [anon_sym_PIPE_EQ] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1408), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym___extension__] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1412), - [anon_sym___attribute] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), - [anon_sym___declspec] = ACTIONS(1412), - [anon_sym___cdecl] = ACTIONS(1412), - [anon_sym___clrcall] = ACTIONS(1412), - [anon_sym___stdcall] = ACTIONS(1412), - [anon_sym___fastcall] = ACTIONS(1412), - [anon_sym___thiscall] = ACTIONS(1412), - [anon_sym___vectorcall] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym___inline] = ACTIONS(1412), - [anon_sym___inline__] = ACTIONS(1412), - [anon_sym___forceinline] = ACTIONS(1412), - [anon_sym_thread_local] = ACTIONS(1412), - [anon_sym___thread] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_constexpr] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym___restrict__] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym__Noreturn] = ACTIONS(1412), - [anon_sym_noreturn] = ACTIONS(1412), - [anon_sym__Nonnull] = ACTIONS(1412), - [anon_sym_alignas] = ACTIONS(1412), - [anon_sym__Alignas] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1412), - [anon_sym___alignof__] = ACTIONS(1412), - [anon_sym___alignof] = ACTIONS(1412), - [anon_sym__alignof] = ACTIONS(1412), - [anon_sym_alignof] = ACTIONS(1412), - [anon_sym__Alignof] = ACTIONS(1412), - [anon_sym_offsetof] = ACTIONS(1412), - [anon_sym__Generic] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1412), - [anon_sym___asm__] = ACTIONS(1412), - [anon_sym___asm] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1410), - [anon_sym_u_SQUOTE] = ACTIONS(1410), - [anon_sym_U_SQUOTE] = ACTIONS(1410), - [anon_sym_u8_SQUOTE] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_L_DQUOTE] = ACTIONS(1410), - [anon_sym_u_DQUOTE] = ACTIONS(1410), - [anon_sym_U_DQUOTE] = ACTIONS(1410), - [anon_sym_u8_DQUOTE] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym_true] = ACTIONS(1412), - [sym_false] = ACTIONS(1412), - [anon_sym_NULL] = ACTIONS(1412), - [anon_sym_nullptr] = ACTIONS(1412), - [sym_comment] = ACTIONS(3), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1374), + [STATE(134)] = { [sym_identifier] = ACTIONS(1372), [aux_sym_preproc_include_token1] = ACTIONS(1372), [aux_sym_preproc_def_token1] = ACTIONS(1372), [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [aux_sym_preproc_else_token1] = ACTIONS(1372), + [aux_sym_preproc_elif_token1] = ACTIONS(1372), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1372), [sym_preproc_directive] = ACTIONS(1372), [anon_sym_LPAREN2] = ACTIONS(1374), [anon_sym_BANG] = ACTIONS(1374), @@ -49871,6 +33573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1372), [anon_sym___attribute__] = ACTIONS(1372), [anon_sym___attribute] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), [anon_sym___declspec] = ACTIONS(1372), [anon_sym___cdecl] = ACTIONS(1372), @@ -49893,7 +33596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1372), [anon_sym_thread_local] = ACTIONS(1372), [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), [anon_sym_constexpr] = ACTIONS(1372), [anon_sym_volatile] = ACTIONS(1372), [anon_sym_restrict] = ACTIONS(1372), @@ -49909,6 +33611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1372), [anon_sym_union] = ACTIONS(1372), [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), [anon_sym_switch] = ACTIONS(1372), [anon_sym_case] = ACTIONS(1372), [anon_sym_default] = ACTIONS(1372), @@ -49919,6 +33622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1372), [anon_sym_continue] = ACTIONS(1372), [anon_sym_goto] = ACTIONS(1372), + [anon_sym___try] = ACTIONS(1372), + [anon_sym___leave] = ACTIONS(1372), [anon_sym_DASH_DASH] = ACTIONS(1374), [anon_sym_PLUS_PLUS] = ACTIONS(1374), [anon_sym_sizeof] = ACTIONS(1372), @@ -49949,514 +33654,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym___attribute] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [anon_sym__Nonnull] = ACTIONS(1336), - [anon_sym_alignas] = ACTIONS(1336), - [anon_sym__Alignas] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [anon_sym___asm] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [322] = { - [sym_attribute_declaration] = STATE(349), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(253), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym___attribute] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [anon_sym__Nonnull] = ACTIONS(1280), - [anon_sym_alignas] = ACTIONS(1280), - [anon_sym__Alignas] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [anon_sym___asm] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym___attribute] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [anon_sym__Nonnull] = ACTIONS(1284), - [anon_sym_alignas] = ACTIONS(1284), - [anon_sym__Alignas] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [anon_sym___asm] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym___attribute] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [anon_sym__Nonnull] = ACTIONS(1288), - [anon_sym_alignas] = ACTIONS(1288), - [anon_sym__Alignas] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [anon_sym___asm] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1362), + [STATE(135)] = { [sym_identifier] = ACTIONS(1360), [aux_sym_preproc_include_token1] = ACTIONS(1360), [aux_sym_preproc_def_token1] = ACTIONS(1360), [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1360), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1360), [sym_preproc_directive] = ACTIONS(1360), [anon_sym_LPAREN2] = ACTIONS(1362), [anon_sym_BANG] = ACTIONS(1362), @@ -50471,6 +33680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1360), [anon_sym___attribute__] = ACTIONS(1360), [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), [anon_sym___declspec] = ACTIONS(1360), [anon_sym___cdecl] = ACTIONS(1360), @@ -50493,7 +33703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1360), [anon_sym_thread_local] = ACTIONS(1360), [anon_sym___thread] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), [anon_sym_constexpr] = ACTIONS(1360), [anon_sym_volatile] = ACTIONS(1360), [anon_sym_restrict] = ACTIONS(1360), @@ -50509,6 +33718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1360), [anon_sym_union] = ACTIONS(1360), [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), [anon_sym_switch] = ACTIONS(1360), [anon_sym_case] = ACTIONS(1360), [anon_sym_default] = ACTIONS(1360), @@ -50519,6 +33729,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1360), [anon_sym_continue] = ACTIONS(1360), [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), [anon_sym_DASH_DASH] = ACTIONS(1362), [anon_sym_PLUS_PLUS] = ACTIONS(1362), [anon_sym_sizeof] = ACTIONS(1360), @@ -50549,214 +33761,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_attribute_declaration] = STATE(349), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(244), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [328] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(149), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(65), - [anon_sym_default] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1378), + [STATE(136)] = { [sym_identifier] = ACTIONS(1376), [aux_sym_preproc_include_token1] = ACTIONS(1376), [aux_sym_preproc_def_token1] = ACTIONS(1376), [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [aux_sym_preproc_else_token1] = ACTIONS(1376), + [aux_sym_preproc_elif_token1] = ACTIONS(1376), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1376), [sym_preproc_directive] = ACTIONS(1376), [anon_sym_LPAREN2] = ACTIONS(1378), [anon_sym_BANG] = ACTIONS(1378), @@ -50771,6 +33787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1376), [anon_sym___attribute__] = ACTIONS(1376), [anon_sym___attribute] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), [anon_sym___declspec] = ACTIONS(1376), [anon_sym___cdecl] = ACTIONS(1376), @@ -50793,7 +33810,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1376), [anon_sym_thread_local] = ACTIONS(1376), [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), [anon_sym_constexpr] = ACTIONS(1376), [anon_sym_volatile] = ACTIONS(1376), [anon_sym_restrict] = ACTIONS(1376), @@ -50809,6 +33825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1376), [anon_sym_union] = ACTIONS(1376), [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), [anon_sym_switch] = ACTIONS(1376), [anon_sym_case] = ACTIONS(1376), [anon_sym_default] = ACTIONS(1376), @@ -50819,6 +33836,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1376), [anon_sym_continue] = ACTIONS(1376), [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1376), [anon_sym_DASH_DASH] = ACTIONS(1378), [anon_sym_PLUS_PLUS] = ACTIONS(1378), [anon_sym_sizeof] = ACTIONS(1376), @@ -50849,712 +33868,6296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym___attribute] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [anon_sym__Nonnull] = ACTIONS(1272), - [anon_sym_alignas] = ACTIONS(1272), - [anon_sym__Alignas] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [anon_sym___asm] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [331] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(1842), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), + [STATE(137)] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [aux_sym_preproc_else_token1] = ACTIONS(1380), + [aux_sym_preproc_elif_token1] = ACTIONS(1380), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym___attribute] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [anon_sym__Nonnull] = ACTIONS(1380), + [anon_sym_alignas] = ACTIONS(1380), + [anon_sym__Alignas] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [anon_sym___asm] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + }, + [STATE(138)] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [aux_sym_preproc_else_token1] = ACTIONS(1384), + [aux_sym_preproc_elif_token1] = ACTIONS(1384), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym___attribute] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = 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_alignas] = ACTIONS(1384), + [anon_sym__Alignas] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym___try] = ACTIONS(1384), + [anon_sym___leave] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [anon_sym___asm] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [STATE(139)] = { + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [aux_sym_preproc_else_token1] = ACTIONS(1388), + [aux_sym_preproc_elif_token1] = ACTIONS(1388), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym___attribute] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [anon_sym__Nonnull] = ACTIONS(1388), + [anon_sym_alignas] = ACTIONS(1388), + [anon_sym__Alignas] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym___try] = ACTIONS(1388), + [anon_sym___leave] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [anon_sym___asm] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + }, + [STATE(140)] = { + [sym_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token2] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [aux_sym_preproc_else_token1] = ACTIONS(1392), + [aux_sym_preproc_elif_token1] = ACTIONS(1392), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym___attribute] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [anon_sym__Nonnull] = ACTIONS(1392), + [anon_sym_alignas] = ACTIONS(1392), + [anon_sym__Alignas] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym___try] = ACTIONS(1392), + [anon_sym___leave] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [anon_sym___asm] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), + [sym_comment] = ACTIONS(3), + }, + [STATE(141)] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1396), + [aux_sym_preproc_elif_token1] = ACTIONS(1396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___attribute] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym__Nonnull] = ACTIONS(1396), + [anon_sym_alignas] = ACTIONS(1396), + [anon_sym__Alignas] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [anon_sym___asm] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + }, + [STATE(142)] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1396), + [aux_sym_preproc_elif_token1] = ACTIONS(1396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___attribute] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym__Nonnull] = ACTIONS(1396), + [anon_sym_alignas] = ACTIONS(1396), + [anon_sym__Alignas] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [anon_sym___asm] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + }, + [STATE(143)] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [aux_sym_preproc_else_token1] = ACTIONS(1400), + [aux_sym_preproc_elif_token1] = ACTIONS(1400), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym___attribute] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [anon_sym__Nonnull] = ACTIONS(1400), + [anon_sym_alignas] = ACTIONS(1400), + [anon_sym__Alignas] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym___try] = ACTIONS(1400), + [anon_sym___leave] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [anon_sym___asm] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + }, + [STATE(144)] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token2] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [aux_sym_preproc_else_token1] = ACTIONS(1404), + [aux_sym_preproc_elif_token1] = ACTIONS(1404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym___attribute] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [anon_sym__Nonnull] = ACTIONS(1404), + [anon_sym_alignas] = ACTIONS(1404), + [anon_sym__Alignas] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym___try] = ACTIONS(1404), + [anon_sym___leave] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [anon_sym___asm] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), + [sym_comment] = ACTIONS(3), + }, + [STATE(145)] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym___attribute] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [anon_sym__Nonnull] = ACTIONS(1410), + [anon_sym_alignas] = ACTIONS(1410), + [anon_sym__Alignas] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___except] = ACTIONS(1410), + [anon_sym___finally] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [anon_sym___asm] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [STATE(146)] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token2] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [aux_sym_preproc_else_token1] = ACTIONS(1412), + [aux_sym_preproc_elif_token1] = ACTIONS(1412), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym___attribute] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [anon_sym__Nonnull] = ACTIONS(1412), + [anon_sym_alignas] = ACTIONS(1412), + [anon_sym__Alignas] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym___try] = ACTIONS(1412), + [anon_sym___leave] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [anon_sym___asm] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + }, + [STATE(147)] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token2] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [aux_sym_preproc_else_token1] = ACTIONS(1416), + [aux_sym_preproc_elif_token1] = ACTIONS(1416), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___attribute] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [anon_sym__Nonnull] = ACTIONS(1416), + [anon_sym_alignas] = ACTIONS(1416), + [anon_sym__Alignas] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym___try] = ACTIONS(1416), + [anon_sym___leave] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [anon_sym___asm] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + }, + [STATE(148)] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym___attribute] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [anon_sym__Nonnull] = ACTIONS(1410), + [anon_sym_alignas] = ACTIONS(1410), + [anon_sym__Alignas] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [anon_sym___asm] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [STATE(149)] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token2] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [aux_sym_preproc_else_token1] = ACTIONS(1420), + [aux_sym_preproc_elif_token1] = ACTIONS(1420), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym___attribute] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [anon_sym__Nonnull] = ACTIONS(1420), + [anon_sym_alignas] = ACTIONS(1420), + [anon_sym__Alignas] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym___try] = ACTIONS(1420), + [anon_sym___leave] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [anon_sym___asm] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym___attribute] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [anon_sym__Nonnull] = ACTIONS(1276), - [anon_sym_alignas] = ACTIONS(1276), - [anon_sym__Alignas] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [anon_sym___asm] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [333] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(167), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(333), + [STATE(150)] = { [sym_identifier] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1427), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [aux_sym_preproc_else_token1] = ACTIONS(1424), + [aux_sym_preproc_elif_token1] = ACTIONS(1424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym___attribute] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [anon_sym__Nonnull] = ACTIONS(1424), + [anon_sym_alignas] = ACTIONS(1424), + [anon_sym__Alignas] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [anon_sym___asm] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + }, + [STATE(151)] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [aux_sym_preproc_else_token1] = ACTIONS(1428), + [aux_sym_preproc_elif_token1] = ACTIONS(1428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), [anon_sym_BANG] = ACTIONS(1430), [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_goto] = ACTIONS(1481), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1487), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym___attribute] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [anon_sym__Nonnull] = ACTIONS(1428), + [anon_sym_alignas] = ACTIONS(1428), + [anon_sym__Alignas] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [anon_sym___asm] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(224), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(65), - [anon_sym_default] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(152)] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [aux_sym_preproc_else_token1] = ACTIONS(1432), + [aux_sym_preproc_elif_token1] = ACTIONS(1432), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym___attribute] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym__Nonnull] = ACTIONS(1432), + [anon_sym_alignas] = ACTIONS(1432), + [anon_sym__Alignas] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [anon_sym___asm] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym___attribute] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [anon_sym__Nonnull] = ACTIONS(1292), - [anon_sym_alignas] = ACTIONS(1292), - [anon_sym__Alignas] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [anon_sym___asm] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym___attribute] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [anon_sym__Nonnull] = ACTIONS(1300), - [anon_sym_alignas] = ACTIONS(1300), - [anon_sym__Alignas] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [anon_sym___asm] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1342), + [STATE(153)] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [aux_sym_preproc_else_token1] = ACTIONS(1436), + [aux_sym_preproc_elif_token1] = ACTIONS(1436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym___attribute] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [anon_sym__Nonnull] = ACTIONS(1436), + [anon_sym_alignas] = ACTIONS(1436), + [anon_sym__Alignas] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [anon_sym___asm] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + }, + [STATE(154)] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [aux_sym_preproc_else_token1] = ACTIONS(1440), + [aux_sym_preproc_elif_token1] = ACTIONS(1440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym___attribute] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [anon_sym__Nonnull] = ACTIONS(1440), + [anon_sym_alignas] = ACTIONS(1440), + [anon_sym__Alignas] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [anon_sym___asm] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [STATE(155)] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [aux_sym_preproc_else_token1] = ACTIONS(1444), + [aux_sym_preproc_elif_token1] = ACTIONS(1444), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym___attribute] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [anon_sym__Nonnull] = ACTIONS(1444), + [anon_sym_alignas] = ACTIONS(1444), + [anon_sym__Alignas] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [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(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [anon_sym___asm] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [STATE(156)] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [aux_sym_preproc_else_token1] = ACTIONS(1448), + [aux_sym_preproc_elif_token1] = ACTIONS(1448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym___attribute] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [anon_sym__Nonnull] = ACTIONS(1448), + [anon_sym_alignas] = ACTIONS(1448), + [anon_sym__Alignas] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [anon_sym___asm] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + }, + [STATE(157)] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [aux_sym_preproc_else_token1] = ACTIONS(1452), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___attribute] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [anon_sym__Nonnull] = ACTIONS(1452), + [anon_sym_alignas] = ACTIONS(1452), + [anon_sym__Alignas] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [anon_sym___asm] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + }, + [STATE(158)] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [aux_sym_preproc_else_token1] = ACTIONS(1452), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___attribute] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [anon_sym__Nonnull] = ACTIONS(1452), + [anon_sym_alignas] = ACTIONS(1452), + [anon_sym__Alignas] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [anon_sym___asm] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + }, + [STATE(159)] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [aux_sym_preproc_else_token1] = ACTIONS(1456), + [aux_sym_preproc_elif_token1] = ACTIONS(1456), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym___attribute] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [anon_sym__Nonnull] = ACTIONS(1456), + [anon_sym_alignas] = ACTIONS(1456), + [anon_sym__Alignas] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [anon_sym___asm] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + }, + [STATE(160)] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [aux_sym_preproc_else_token1] = ACTIONS(1460), + [aux_sym_preproc_elif_token1] = ACTIONS(1460), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym___attribute] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [anon_sym__Nonnull] = ACTIONS(1460), + [anon_sym_alignas] = ACTIONS(1460), + [anon_sym__Alignas] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_else] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [anon_sym___asm] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [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(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + }, + [STATE(161)] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [aux_sym_preproc_else_token1] = ACTIONS(1464), + [aux_sym_preproc_elif_token1] = ACTIONS(1464), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___attribute] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [anon_sym___asm] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [STATE(162)] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [aux_sym_preproc_else_token1] = ACTIONS(1464), + [aux_sym_preproc_elif_token1] = ACTIONS(1464), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___attribute] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [anon_sym___asm] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [STATE(163)] = { + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [aux_sym_preproc_else_token1] = ACTIONS(1468), + [aux_sym_preproc_elif_token1] = ACTIONS(1468), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym___attribute] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [anon_sym__Nonnull] = ACTIONS(1468), + [anon_sym_alignas] = ACTIONS(1468), + [anon_sym__Alignas] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [anon_sym___asm] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), + [sym_comment] = ACTIONS(3), + }, + [STATE(164)] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [aux_sym_preproc_else_token1] = ACTIONS(1472), + [aux_sym_preproc_elif_token1] = ACTIONS(1472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym___attribute] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [anon_sym__Nonnull] = ACTIONS(1472), + [anon_sym_alignas] = ACTIONS(1472), + [anon_sym__Alignas] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_else] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [anon_sym___asm] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [STATE(165)] = { + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym___attribute] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [anon_sym__Nonnull] = ACTIONS(1392), + [anon_sym_alignas] = ACTIONS(1392), + [anon_sym__Alignas] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym___try] = ACTIONS(1392), + [anon_sym___except] = ACTIONS(1392), + [anon_sym___finally] = ACTIONS(1392), + [anon_sym___leave] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [anon_sym___asm] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), + [sym_comment] = ACTIONS(3), + }, + [STATE(166)] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [aux_sym_preproc_else_token1] = ACTIONS(1476), + [aux_sym_preproc_elif_token1] = ACTIONS(1476), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym___attribute] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [anon_sym__Nonnull] = ACTIONS(1476), + [anon_sym_alignas] = ACTIONS(1476), + [anon_sym__Alignas] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [anon_sym___asm] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [STATE(167)] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [aux_sym_preproc_else_token1] = ACTIONS(1480), + [aux_sym_preproc_elif_token1] = ACTIONS(1480), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym___attribute] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [anon_sym__Nonnull] = ACTIONS(1480), + [anon_sym_alignas] = ACTIONS(1480), + [anon_sym__Alignas] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [anon_sym___asm] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [STATE(168)] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [aux_sym_preproc_else_token1] = ACTIONS(1484), + [aux_sym_preproc_elif_token1] = ACTIONS(1484), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym___attribute] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [anon_sym__Nonnull] = ACTIONS(1484), + [anon_sym_alignas] = ACTIONS(1484), + [anon_sym__Alignas] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [anon_sym___asm] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [STATE(169)] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [aux_sym_preproc_else_token1] = ACTIONS(1488), + [aux_sym_preproc_elif_token1] = ACTIONS(1488), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___attribute] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [anon_sym__Nonnull] = ACTIONS(1488), + [anon_sym_alignas] = ACTIONS(1488), + [anon_sym__Alignas] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [anon_sym___asm] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + }, + [STATE(170)] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_else_token1] = ACTIONS(1492), + [aux_sym_preproc_elif_token1] = ACTIONS(1492), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym___attribute] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [anon_sym__Nonnull] = ACTIONS(1492), + [anon_sym_alignas] = ACTIONS(1492), + [anon_sym__Alignas] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [anon_sym___asm] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + }, + [STATE(171)] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [aux_sym_preproc_else_token1] = ACTIONS(1496), + [aux_sym_preproc_elif_token1] = ACTIONS(1496), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym___attribute] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [anon_sym__Nonnull] = ACTIONS(1496), + [anon_sym_alignas] = ACTIONS(1496), + [anon_sym__Alignas] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [anon_sym___asm] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + }, + [STATE(172)] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [aux_sym_preproc_else_token1] = ACTIONS(1500), + [aux_sym_preproc_elif_token1] = ACTIONS(1500), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___attribute] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [anon_sym__Nonnull] = ACTIONS(1500), + [anon_sym_alignas] = ACTIONS(1500), + [anon_sym__Alignas] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [anon_sym___asm] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [STATE(173)] = { + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [aux_sym_preproc_else_token1] = ACTIONS(1504), + [aux_sym_preproc_elif_token1] = ACTIONS(1504), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym___attribute] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [anon_sym__Nonnull] = ACTIONS(1504), + [anon_sym_alignas] = ACTIONS(1504), + [anon_sym__Alignas] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [anon_sym___asm] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), + [sym_comment] = ACTIONS(3), + }, + [STATE(174)] = { + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [aux_sym_preproc_else_token1] = ACTIONS(1508), + [aux_sym_preproc_elif_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___attribute] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [anon_sym__Nonnull] = ACTIONS(1508), + [anon_sym_alignas] = ACTIONS(1508), + [anon_sym__Alignas] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [anon_sym___asm] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + }, + [STATE(175)] = { + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___attribute] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [anon_sym__Nonnull] = ACTIONS(1512), + [anon_sym_alignas] = ACTIONS(1512), + [anon_sym__Alignas] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [anon_sym___asm] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), + [sym_comment] = ACTIONS(3), + }, + [STATE(176)] = { + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [aux_sym_preproc_else_token1] = ACTIONS(1516), + [aux_sym_preproc_elif_token1] = ACTIONS(1516), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym___attribute] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [anon_sym__Nonnull] = ACTIONS(1516), + [anon_sym_alignas] = ACTIONS(1516), + [anon_sym__Alignas] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [anon_sym___asm] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), + }, + [STATE(177)] = { + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [aux_sym_preproc_else_token1] = ACTIONS(1520), + [aux_sym_preproc_elif_token1] = ACTIONS(1520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym___attribute] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [anon_sym__Nonnull] = ACTIONS(1520), + [anon_sym_alignas] = ACTIONS(1520), + [anon_sym__Alignas] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [anon_sym___asm] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), + [sym_comment] = ACTIONS(3), + }, + [STATE(178)] = { + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token2] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [aux_sym_preproc_else_token1] = ACTIONS(1524), + [aux_sym_preproc_elif_token1] = ACTIONS(1524), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___attribute] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym__Nonnull] = ACTIONS(1524), + [anon_sym_alignas] = ACTIONS(1524), + [anon_sym__Alignas] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [anon_sym___asm] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + }, + [STATE(179)] = { + [sym_identifier] = ACTIONS(1528), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token2] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [aux_sym_preproc_else_token1] = ACTIONS(1528), + [aux_sym_preproc_elif_token1] = ACTIONS(1528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym___attribute] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [anon_sym__Nonnull] = ACTIONS(1528), + [anon_sym_alignas] = ACTIONS(1528), + [anon_sym__Alignas] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym___try] = ACTIONS(1528), + [anon_sym___leave] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [anon_sym___asm] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), + [sym_comment] = ACTIONS(3), + }, + [STATE(180)] = { + [sym_identifier] = ACTIONS(1532), + [aux_sym_preproc_include_token1] = ACTIONS(1532), + [aux_sym_preproc_def_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token2] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1532), + [aux_sym_preproc_else_token1] = ACTIONS(1532), + [aux_sym_preproc_elif_token1] = ACTIONS(1532), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1532), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym___extension__] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym___attribute__] = ACTIONS(1532), + [anon_sym___attribute] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym___declspec] = ACTIONS(1532), + [anon_sym___cdecl] = ACTIONS(1532), + [anon_sym___clrcall] = ACTIONS(1532), + [anon_sym___stdcall] = ACTIONS(1532), + [anon_sym___fastcall] = ACTIONS(1532), + [anon_sym___thiscall] = ACTIONS(1532), + [anon_sym___vectorcall] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_signed] = ACTIONS(1532), + [anon_sym_unsigned] = ACTIONS(1532), + [anon_sym_long] = ACTIONS(1532), + [anon_sym_short] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_auto] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_inline] = ACTIONS(1532), + [anon_sym___inline] = ACTIONS(1532), + [anon_sym___inline__] = ACTIONS(1532), + [anon_sym___forceinline] = ACTIONS(1532), + [anon_sym_thread_local] = ACTIONS(1532), + [anon_sym___thread] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1532), + [anon_sym_volatile] = ACTIONS(1532), + [anon_sym_restrict] = ACTIONS(1532), + [anon_sym___restrict__] = ACTIONS(1532), + [anon_sym__Atomic] = ACTIONS(1532), + [anon_sym__Noreturn] = ACTIONS(1532), + [anon_sym_noreturn] = ACTIONS(1532), + [anon_sym__Nonnull] = ACTIONS(1532), + [anon_sym_alignas] = ACTIONS(1532), + [anon_sym__Alignas] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_case] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_goto] = ACTIONS(1532), + [anon_sym___try] = ACTIONS(1532), + [anon_sym___leave] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1532), + [anon_sym__Generic] = ACTIONS(1532), + [anon_sym_asm] = ACTIONS(1532), + [anon_sym___asm__] = ACTIONS(1532), + [anon_sym___asm] = ACTIONS(1532), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_L_SQUOTE] = ACTIONS(1534), + [anon_sym_u_SQUOTE] = ACTIONS(1534), + [anon_sym_U_SQUOTE] = ACTIONS(1534), + [anon_sym_u8_SQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1532), + [sym_false] = ACTIONS(1532), + [anon_sym_NULL] = ACTIONS(1532), + [anon_sym_nullptr] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + }, + [STATE(181)] = { + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [aux_sym_preproc_else_token1] = ACTIONS(1536), + [aux_sym_preproc_elif_token1] = ACTIONS(1536), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym___attribute__] = ACTIONS(1536), + [anon_sym___attribute] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym___declspec] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1536), + [anon_sym_unsigned] = ACTIONS(1536), + [anon_sym_long] = ACTIONS(1536), + [anon_sym_short] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(1536), + [anon_sym___inline] = ACTIONS(1536), + [anon_sym___inline__] = ACTIONS(1536), + [anon_sym___forceinline] = ACTIONS(1536), + [anon_sym_thread_local] = ACTIONS(1536), + [anon_sym___thread] = ACTIONS(1536), + [anon_sym_constexpr] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1536), + [anon_sym_restrict] = ACTIONS(1536), + [anon_sym___restrict__] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1536), + [anon_sym__Noreturn] = ACTIONS(1536), + [anon_sym_noreturn] = ACTIONS(1536), + [anon_sym__Nonnull] = ACTIONS(1536), + [anon_sym_alignas] = ACTIONS(1536), + [anon_sym__Alignas] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1536), + [anon_sym___try] = ACTIONS(1536), + [anon_sym___leave] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1536), + [anon_sym___alignof__] = ACTIONS(1536), + [anon_sym___alignof] = ACTIONS(1536), + [anon_sym__alignof] = ACTIONS(1536), + [anon_sym_alignof] = ACTIONS(1536), + [anon_sym__Alignof] = ACTIONS(1536), + [anon_sym_offsetof] = ACTIONS(1536), + [anon_sym__Generic] = ACTIONS(1536), + [anon_sym_asm] = ACTIONS(1536), + [anon_sym___asm__] = ACTIONS(1536), + [anon_sym___asm] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1538), + [anon_sym_L_SQUOTE] = ACTIONS(1538), + [anon_sym_u_SQUOTE] = ACTIONS(1538), + [anon_sym_U_SQUOTE] = ACTIONS(1538), + [anon_sym_u8_SQUOTE] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_L_DQUOTE] = ACTIONS(1538), + [anon_sym_u_DQUOTE] = ACTIONS(1538), + [anon_sym_U_DQUOTE] = ACTIONS(1538), + [anon_sym_u8_DQUOTE] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [anon_sym_NULL] = ACTIONS(1536), + [anon_sym_nullptr] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + }, + [STATE(182)] = { + [sym_identifier] = ACTIONS(1540), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [aux_sym_preproc_else_token1] = ACTIONS(1540), + [aux_sym_preproc_elif_token1] = ACTIONS(1540), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym___extension__] = ACTIONS(1540), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1540), + [anon_sym___attribute] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1542), + [anon_sym___declspec] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_signed] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_inline] = ACTIONS(1540), + [anon_sym___inline] = ACTIONS(1540), + [anon_sym___inline__] = ACTIONS(1540), + [anon_sym___forceinline] = ACTIONS(1540), + [anon_sym_thread_local] = ACTIONS(1540), + [anon_sym___thread] = ACTIONS(1540), + [anon_sym_constexpr] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym___restrict__] = ACTIONS(1540), + [anon_sym__Atomic] = ACTIONS(1540), + [anon_sym__Noreturn] = ACTIONS(1540), + [anon_sym_noreturn] = ACTIONS(1540), + [anon_sym__Nonnull] = ACTIONS(1540), + [anon_sym_alignas] = ACTIONS(1540), + [anon_sym__Alignas] = ACTIONS(1540), + [sym_primitive_type] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym___try] = ACTIONS(1540), + [anon_sym___leave] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_sizeof] = ACTIONS(1540), + [anon_sym___alignof__] = ACTIONS(1540), + [anon_sym___alignof] = ACTIONS(1540), + [anon_sym__alignof] = ACTIONS(1540), + [anon_sym_alignof] = ACTIONS(1540), + [anon_sym__Alignof] = ACTIONS(1540), + [anon_sym_offsetof] = ACTIONS(1540), + [anon_sym__Generic] = ACTIONS(1540), + [anon_sym_asm] = ACTIONS(1540), + [anon_sym___asm__] = ACTIONS(1540), + [anon_sym___asm] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_L_SQUOTE] = ACTIONS(1542), + [anon_sym_u_SQUOTE] = ACTIONS(1542), + [anon_sym_U_SQUOTE] = ACTIONS(1542), + [anon_sym_u8_SQUOTE] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_L_DQUOTE] = ACTIONS(1542), + [anon_sym_u_DQUOTE] = ACTIONS(1542), + [anon_sym_U_DQUOTE] = ACTIONS(1542), + [anon_sym_u8_DQUOTE] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym_true] = ACTIONS(1540), + [sym_false] = ACTIONS(1540), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + }, + [STATE(183)] = { + [sym_identifier] = ACTIONS(1544), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token2] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [aux_sym_preproc_else_token1] = ACTIONS(1544), + [aux_sym_preproc_elif_token1] = ACTIONS(1544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym___extension__] = ACTIONS(1544), + [anon_sym_typedef] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym___attribute] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), + [anon_sym___declspec] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_signed] = ACTIONS(1544), + [anon_sym_unsigned] = ACTIONS(1544), + [anon_sym_long] = ACTIONS(1544), + [anon_sym_short] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_auto] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_inline] = ACTIONS(1544), + [anon_sym___inline] = ACTIONS(1544), + [anon_sym___inline__] = ACTIONS(1544), + [anon_sym___forceinline] = ACTIONS(1544), + [anon_sym_thread_local] = ACTIONS(1544), + [anon_sym___thread] = ACTIONS(1544), + [anon_sym_constexpr] = ACTIONS(1544), + [anon_sym_volatile] = ACTIONS(1544), + [anon_sym_restrict] = ACTIONS(1544), + [anon_sym___restrict__] = ACTIONS(1544), + [anon_sym__Atomic] = ACTIONS(1544), + [anon_sym__Noreturn] = ACTIONS(1544), + [anon_sym_noreturn] = ACTIONS(1544), + [anon_sym__Nonnull] = ACTIONS(1544), + [anon_sym_alignas] = ACTIONS(1544), + [anon_sym__Alignas] = ACTIONS(1544), + [sym_primitive_type] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_switch] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1544), + [anon_sym___leave] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1544), + [anon_sym___alignof__] = ACTIONS(1544), + [anon_sym___alignof] = ACTIONS(1544), + [anon_sym__alignof] = ACTIONS(1544), + [anon_sym_alignof] = ACTIONS(1544), + [anon_sym__Alignof] = ACTIONS(1544), + [anon_sym_offsetof] = ACTIONS(1544), + [anon_sym__Generic] = ACTIONS(1544), + [anon_sym_asm] = ACTIONS(1544), + [anon_sym___asm__] = ACTIONS(1544), + [anon_sym___asm] = ACTIONS(1544), + [sym_number_literal] = ACTIONS(1546), + [anon_sym_L_SQUOTE] = ACTIONS(1546), + [anon_sym_u_SQUOTE] = ACTIONS(1546), + [anon_sym_U_SQUOTE] = ACTIONS(1546), + [anon_sym_u8_SQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1544), + [sym_false] = ACTIONS(1544), + [anon_sym_NULL] = ACTIONS(1544), + [anon_sym_nullptr] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + }, + [STATE(184)] = { + [sym_identifier] = ACTIONS(1548), + [aux_sym_preproc_include_token1] = ACTIONS(1548), + [aux_sym_preproc_def_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token2] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), + [aux_sym_preproc_else_token1] = ACTIONS(1548), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1548), + [sym_preproc_directive] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_typedef] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym___attribute__] = ACTIONS(1548), + [anon_sym___attribute] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), + [anon_sym___declspec] = ACTIONS(1548), + [anon_sym___cdecl] = ACTIONS(1548), + [anon_sym___clrcall] = ACTIONS(1548), + [anon_sym___stdcall] = ACTIONS(1548), + [anon_sym___fastcall] = ACTIONS(1548), + [anon_sym___thiscall] = ACTIONS(1548), + [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_signed] = ACTIONS(1548), + [anon_sym_unsigned] = ACTIONS(1548), + [anon_sym_long] = ACTIONS(1548), + [anon_sym_short] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_auto] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_inline] = ACTIONS(1548), + [anon_sym___inline] = ACTIONS(1548), + [anon_sym___inline__] = ACTIONS(1548), + [anon_sym___forceinline] = ACTIONS(1548), + [anon_sym_thread_local] = ACTIONS(1548), + [anon_sym___thread] = ACTIONS(1548), + [anon_sym_constexpr] = ACTIONS(1548), + [anon_sym_volatile] = ACTIONS(1548), + [anon_sym_restrict] = ACTIONS(1548), + [anon_sym___restrict__] = ACTIONS(1548), + [anon_sym__Atomic] = ACTIONS(1548), + [anon_sym__Noreturn] = ACTIONS(1548), + [anon_sym_noreturn] = ACTIONS(1548), + [anon_sym__Nonnull] = ACTIONS(1548), + [anon_sym_alignas] = ACTIONS(1548), + [anon_sym__Alignas] = ACTIONS(1548), + [sym_primitive_type] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_goto] = ACTIONS(1548), + [anon_sym___try] = ACTIONS(1548), + [anon_sym___leave] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(1548), + [anon_sym___alignof] = ACTIONS(1548), + [anon_sym__alignof] = ACTIONS(1548), + [anon_sym_alignof] = ACTIONS(1548), + [anon_sym__Alignof] = ACTIONS(1548), + [anon_sym_offsetof] = ACTIONS(1548), + [anon_sym__Generic] = ACTIONS(1548), + [anon_sym_asm] = ACTIONS(1548), + [anon_sym___asm__] = ACTIONS(1548), + [anon_sym___asm] = ACTIONS(1548), + [sym_number_literal] = ACTIONS(1551), + [anon_sym_L_SQUOTE] = ACTIONS(1551), + [anon_sym_u_SQUOTE] = ACTIONS(1551), + [anon_sym_U_SQUOTE] = ACTIONS(1551), + [anon_sym_u8_SQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_L_DQUOTE] = ACTIONS(1551), + [anon_sym_u_DQUOTE] = ACTIONS(1551), + [anon_sym_U_DQUOTE] = ACTIONS(1551), + [anon_sym_u8_DQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [anon_sym_NULL] = ACTIONS(1548), + [anon_sym_nullptr] = ACTIONS(1548), + [sym_comment] = ACTIONS(3), + }, + [STATE(185)] = { + [sym_identifier] = ACTIONS(1554), + [aux_sym_preproc_include_token1] = ACTIONS(1554), + [aux_sym_preproc_def_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token2] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1554), + [aux_sym_preproc_else_token1] = ACTIONS(1554), + [aux_sym_preproc_elif_token1] = ACTIONS(1554), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1554), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1554), + [anon_sym_typedef] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym___attribute__] = ACTIONS(1554), + [anon_sym___attribute] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), + [anon_sym___declspec] = ACTIONS(1554), + [anon_sym___cdecl] = ACTIONS(1554), + [anon_sym___clrcall] = ACTIONS(1554), + [anon_sym___stdcall] = ACTIONS(1554), + [anon_sym___fastcall] = ACTIONS(1554), + [anon_sym___thiscall] = ACTIONS(1554), + [anon_sym___vectorcall] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_signed] = ACTIONS(1554), + [anon_sym_unsigned] = ACTIONS(1554), + [anon_sym_long] = ACTIONS(1554), + [anon_sym_short] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_auto] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_inline] = ACTIONS(1554), + [anon_sym___inline] = ACTIONS(1554), + [anon_sym___inline__] = ACTIONS(1554), + [anon_sym___forceinline] = ACTIONS(1554), + [anon_sym_thread_local] = ACTIONS(1554), + [anon_sym___thread] = ACTIONS(1554), + [anon_sym_constexpr] = ACTIONS(1554), + [anon_sym_volatile] = ACTIONS(1554), + [anon_sym_restrict] = ACTIONS(1554), + [anon_sym___restrict__] = ACTIONS(1554), + [anon_sym__Atomic] = ACTIONS(1554), + [anon_sym__Noreturn] = ACTIONS(1554), + [anon_sym_noreturn] = ACTIONS(1554), + [anon_sym__Nonnull] = ACTIONS(1554), + [anon_sym_alignas] = ACTIONS(1554), + [anon_sym__Alignas] = ACTIONS(1554), + [sym_primitive_type] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_goto] = ACTIONS(1554), + [anon_sym___try] = ACTIONS(1554), + [anon_sym___leave] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_sizeof] = ACTIONS(1554), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1554), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1554), + [anon_sym___asm__] = ACTIONS(1554), + [anon_sym___asm] = ACTIONS(1554), + [sym_number_literal] = ACTIONS(1556), + [anon_sym_L_SQUOTE] = ACTIONS(1556), + [anon_sym_u_SQUOTE] = ACTIONS(1556), + [anon_sym_U_SQUOTE] = ACTIONS(1556), + [anon_sym_u8_SQUOTE] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_L_DQUOTE] = ACTIONS(1556), + [anon_sym_u_DQUOTE] = ACTIONS(1556), + [anon_sym_U_DQUOTE] = ACTIONS(1556), + [anon_sym_u8_DQUOTE] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [anon_sym_NULL] = ACTIONS(1554), + [anon_sym_nullptr] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + }, + [STATE(186)] = { + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token2] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [aux_sym_preproc_else_token1] = ACTIONS(1558), + [aux_sym_preproc_elif_token1] = ACTIONS(1558), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym___attribute] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [anon_sym__Nonnull] = ACTIONS(1558), + [anon_sym_alignas] = ACTIONS(1558), + [anon_sym__Alignas] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym___try] = ACTIONS(1558), + [anon_sym___leave] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(1560), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [anon_sym___asm] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1560), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1560), + [anon_sym_u_DQUOTE] = ACTIONS(1560), + [anon_sym_U_DQUOTE] = ACTIONS(1560), + [anon_sym_u8_DQUOTE] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), + [sym_comment] = ACTIONS(3), + }, + [STATE(187)] = { + [sym_identifier] = ACTIONS(1562), + [aux_sym_preproc_include_token1] = ACTIONS(1562), + [aux_sym_preproc_def_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token2] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1562), + [aux_sym_preproc_else_token1] = ACTIONS(1562), + [aux_sym_preproc_elif_token1] = ACTIONS(1562), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1562), + [sym_preproc_directive] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym___extension__] = ACTIONS(1562), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym___attribute__] = ACTIONS(1562), + [anon_sym___attribute] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym___declspec] = ACTIONS(1562), + [anon_sym___cdecl] = ACTIONS(1562), + [anon_sym___clrcall] = ACTIONS(1562), + [anon_sym___stdcall] = ACTIONS(1562), + [anon_sym___fastcall] = ACTIONS(1562), + [anon_sym___thiscall] = ACTIONS(1562), + [anon_sym___vectorcall] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1562), + [anon_sym_unsigned] = ACTIONS(1562), + [anon_sym_long] = ACTIONS(1562), + [anon_sym_short] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_auto] = ACTIONS(1562), + [anon_sym_register] = ACTIONS(1562), + [anon_sym_inline] = ACTIONS(1562), + [anon_sym___inline] = ACTIONS(1562), + [anon_sym___inline__] = ACTIONS(1562), + [anon_sym___forceinline] = ACTIONS(1562), + [anon_sym_thread_local] = ACTIONS(1562), + [anon_sym___thread] = ACTIONS(1562), + [anon_sym_constexpr] = ACTIONS(1562), + [anon_sym_volatile] = ACTIONS(1562), + [anon_sym_restrict] = ACTIONS(1562), + [anon_sym___restrict__] = ACTIONS(1562), + [anon_sym__Atomic] = ACTIONS(1562), + [anon_sym__Noreturn] = ACTIONS(1562), + [anon_sym_noreturn] = ACTIONS(1562), + [anon_sym__Nonnull] = ACTIONS(1562), + [anon_sym_alignas] = ACTIONS(1562), + [anon_sym__Alignas] = ACTIONS(1562), + [sym_primitive_type] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_goto] = ACTIONS(1562), + [anon_sym___try] = ACTIONS(1562), + [anon_sym___leave] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(1562), + [anon_sym___alignof] = ACTIONS(1562), + [anon_sym__alignof] = ACTIONS(1562), + [anon_sym_alignof] = ACTIONS(1562), + [anon_sym__Alignof] = ACTIONS(1562), + [anon_sym_offsetof] = ACTIONS(1562), + [anon_sym__Generic] = ACTIONS(1562), + [anon_sym_asm] = ACTIONS(1562), + [anon_sym___asm__] = ACTIONS(1562), + [anon_sym___asm] = ACTIONS(1562), + [sym_number_literal] = ACTIONS(1564), + [anon_sym_L_SQUOTE] = ACTIONS(1564), + [anon_sym_u_SQUOTE] = ACTIONS(1564), + [anon_sym_U_SQUOTE] = ACTIONS(1564), + [anon_sym_u8_SQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_L_DQUOTE] = ACTIONS(1564), + [anon_sym_u_DQUOTE] = ACTIONS(1564), + [anon_sym_U_DQUOTE] = ACTIONS(1564), + [anon_sym_u8_DQUOTE] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [anon_sym_NULL] = ACTIONS(1562), + [anon_sym_nullptr] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + }, + [STATE(188)] = { + [sym_identifier] = ACTIONS(1566), + [aux_sym_preproc_include_token1] = ACTIONS(1566), + [aux_sym_preproc_def_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token2] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1566), + [aux_sym_preproc_else_token1] = ACTIONS(1566), + [aux_sym_preproc_elif_token1] = ACTIONS(1566), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1566), + [sym_preproc_directive] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym___extension__] = ACTIONS(1566), + [anon_sym_typedef] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym___attribute__] = ACTIONS(1566), + [anon_sym___attribute] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym___declspec] = ACTIONS(1566), + [anon_sym___cdecl] = ACTIONS(1566), + [anon_sym___clrcall] = ACTIONS(1566), + [anon_sym___stdcall] = ACTIONS(1566), + [anon_sym___fastcall] = ACTIONS(1566), + [anon_sym___thiscall] = ACTIONS(1566), + [anon_sym___vectorcall] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1566), + [anon_sym_unsigned] = ACTIONS(1566), + [anon_sym_long] = ACTIONS(1566), + [anon_sym_short] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_auto] = ACTIONS(1566), + [anon_sym_register] = ACTIONS(1566), + [anon_sym_inline] = ACTIONS(1566), + [anon_sym___inline] = ACTIONS(1566), + [anon_sym___inline__] = ACTIONS(1566), + [anon_sym___forceinline] = ACTIONS(1566), + [anon_sym_thread_local] = ACTIONS(1566), + [anon_sym___thread] = ACTIONS(1566), + [anon_sym_constexpr] = ACTIONS(1566), + [anon_sym_volatile] = ACTIONS(1566), + [anon_sym_restrict] = ACTIONS(1566), + [anon_sym___restrict__] = ACTIONS(1566), + [anon_sym__Atomic] = ACTIONS(1566), + [anon_sym__Noreturn] = ACTIONS(1566), + [anon_sym_noreturn] = ACTIONS(1566), + [anon_sym__Nonnull] = ACTIONS(1566), + [anon_sym_alignas] = ACTIONS(1566), + [anon_sym__Alignas] = ACTIONS(1566), + [sym_primitive_type] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_do] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1566), + [anon_sym___try] = ACTIONS(1566), + [anon_sym___leave] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_sizeof] = ACTIONS(1566), + [anon_sym___alignof__] = ACTIONS(1566), + [anon_sym___alignof] = ACTIONS(1566), + [anon_sym__alignof] = ACTIONS(1566), + [anon_sym_alignof] = ACTIONS(1566), + [anon_sym__Alignof] = ACTIONS(1566), + [anon_sym_offsetof] = ACTIONS(1566), + [anon_sym__Generic] = ACTIONS(1566), + [anon_sym_asm] = ACTIONS(1566), + [anon_sym___asm__] = ACTIONS(1566), + [anon_sym___asm] = ACTIONS(1566), + [sym_number_literal] = ACTIONS(1568), + [anon_sym_L_SQUOTE] = ACTIONS(1568), + [anon_sym_u_SQUOTE] = ACTIONS(1568), + [anon_sym_U_SQUOTE] = ACTIONS(1568), + [anon_sym_u8_SQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_L_DQUOTE] = ACTIONS(1568), + [anon_sym_u_DQUOTE] = ACTIONS(1568), + [anon_sym_U_DQUOTE] = ACTIONS(1568), + [anon_sym_u8_DQUOTE] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [sym_true] = ACTIONS(1566), + [sym_false] = ACTIONS(1566), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + }, + [STATE(189)] = { + [sym_expression] = STATE(1321), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1570), + [anon_sym_LPAREN2] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_RBRACK] = ACTIONS(1266), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_sizeof] = ACTIONS(1591), + [anon_sym___alignof__] = ACTIONS(1594), + [anon_sym___alignof] = ACTIONS(1594), + [anon_sym__alignof] = ACTIONS(1594), + [anon_sym_alignof] = ACTIONS(1594), + [anon_sym__Alignof] = ACTIONS(1594), + [anon_sym_offsetof] = ACTIONS(1597), + [anon_sym__Generic] = ACTIONS(1600), + [anon_sym_asm] = ACTIONS(1603), + [anon_sym___asm__] = ACTIONS(1603), + [anon_sym___asm] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1606), + [anon_sym_L_SQUOTE] = ACTIONS(1609), + [anon_sym_u_SQUOTE] = ACTIONS(1609), + [anon_sym_U_SQUOTE] = ACTIONS(1609), + [anon_sym_u8_SQUOTE] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_L_DQUOTE] = ACTIONS(1612), + [anon_sym_u_DQUOTE] = ACTIONS(1612), + [anon_sym_U_DQUOTE] = ACTIONS(1612), + [anon_sym_u8_DQUOTE] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1612), + [sym_true] = ACTIONS(1615), + [sym_false] = ACTIONS(1615), + [anon_sym_NULL] = ACTIONS(1618), + [anon_sym_nullptr] = ACTIONS(1618), + [sym_comment] = ACTIONS(3), + }, + [STATE(190)] = { + [sym_identifier] = ACTIONS(1621), + [aux_sym_preproc_include_token1] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1621), + [aux_sym_preproc_if_token2] = ACTIONS(1621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1621), + [aux_sym_preproc_else_token1] = ACTIONS(1621), + [aux_sym_preproc_elif_token1] = ACTIONS(1621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1621), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1621), + [sym_preproc_directive] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym___extension__] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1621), + [anon_sym___attribute__] = ACTIONS(1621), + [anon_sym___attribute] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), + [anon_sym___declspec] = ACTIONS(1621), + [anon_sym___cdecl] = ACTIONS(1621), + [anon_sym___clrcall] = ACTIONS(1621), + [anon_sym___stdcall] = ACTIONS(1621), + [anon_sym___fastcall] = ACTIONS(1621), + [anon_sym___thiscall] = ACTIONS(1621), + [anon_sym___vectorcall] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1621), + [anon_sym_unsigned] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_auto] = ACTIONS(1621), + [anon_sym_register] = ACTIONS(1621), + [anon_sym_inline] = ACTIONS(1621), + [anon_sym___inline] = ACTIONS(1621), + [anon_sym___inline__] = ACTIONS(1621), + [anon_sym___forceinline] = ACTIONS(1621), + [anon_sym_thread_local] = ACTIONS(1621), + [anon_sym___thread] = ACTIONS(1621), + [anon_sym_constexpr] = ACTIONS(1621), + [anon_sym_volatile] = ACTIONS(1621), + [anon_sym_restrict] = ACTIONS(1621), + [anon_sym___restrict__] = ACTIONS(1621), + [anon_sym__Atomic] = ACTIONS(1621), + [anon_sym__Noreturn] = ACTIONS(1621), + [anon_sym_noreturn] = ACTIONS(1621), + [anon_sym__Nonnull] = ACTIONS(1621), + [anon_sym_alignas] = ACTIONS(1621), + [anon_sym__Alignas] = ACTIONS(1621), + [sym_primitive_type] = ACTIONS(1621), + [anon_sym_enum] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_case] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_goto] = ACTIONS(1621), + [anon_sym___try] = ACTIONS(1621), + [anon_sym___leave] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1621), + [anon_sym___alignof__] = ACTIONS(1621), + [anon_sym___alignof] = ACTIONS(1621), + [anon_sym__alignof] = ACTIONS(1621), + [anon_sym_alignof] = ACTIONS(1621), + [anon_sym__Alignof] = ACTIONS(1621), + [anon_sym_offsetof] = ACTIONS(1621), + [anon_sym__Generic] = ACTIONS(1621), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym___asm__] = ACTIONS(1621), + [anon_sym___asm] = ACTIONS(1621), + [sym_number_literal] = ACTIONS(1623), + [anon_sym_L_SQUOTE] = ACTIONS(1623), + [anon_sym_u_SQUOTE] = ACTIONS(1623), + [anon_sym_U_SQUOTE] = ACTIONS(1623), + [anon_sym_u8_SQUOTE] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_L_DQUOTE] = ACTIONS(1623), + [anon_sym_u_DQUOTE] = ACTIONS(1623), + [anon_sym_U_DQUOTE] = ACTIONS(1623), + [anon_sym_u8_DQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym_true] = ACTIONS(1621), + [sym_false] = ACTIONS(1621), + [anon_sym_NULL] = ACTIONS(1621), + [anon_sym_nullptr] = ACTIONS(1621), + [sym_comment] = ACTIONS(3), + }, + [STATE(191)] = { + [sym_identifier] = ACTIONS(1625), + [aux_sym_preproc_include_token1] = ACTIONS(1625), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [aux_sym_preproc_if_token1] = ACTIONS(1625), + [aux_sym_preproc_if_token2] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), + [aux_sym_preproc_else_token1] = ACTIONS(1625), + [aux_sym_preproc_elif_token1] = ACTIONS(1625), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1625), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1625), + [sym_preproc_directive] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym___extension__] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym___attribute] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [anon_sym___declspec] = ACTIONS(1625), + [anon_sym___cdecl] = ACTIONS(1625), + [anon_sym___clrcall] = ACTIONS(1625), + [anon_sym___stdcall] = ACTIONS(1625), + [anon_sym___fastcall] = ACTIONS(1625), + [anon_sym___thiscall] = ACTIONS(1625), + [anon_sym___vectorcall] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_auto] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym___inline] = ACTIONS(1625), + [anon_sym___inline__] = ACTIONS(1625), + [anon_sym___forceinline] = ACTIONS(1625), + [anon_sym_thread_local] = ACTIONS(1625), + [anon_sym___thread] = ACTIONS(1625), + [anon_sym_constexpr] = ACTIONS(1625), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_restrict] = ACTIONS(1625), + [anon_sym___restrict__] = ACTIONS(1625), + [anon_sym__Atomic] = ACTIONS(1625), + [anon_sym__Noreturn] = ACTIONS(1625), + [anon_sym_noreturn] = ACTIONS(1625), + [anon_sym__Nonnull] = ACTIONS(1625), + [anon_sym_alignas] = ACTIONS(1625), + [anon_sym__Alignas] = ACTIONS(1625), + [sym_primitive_type] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_case] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_goto] = ACTIONS(1625), + [anon_sym___try] = ACTIONS(1625), + [anon_sym___leave] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_sizeof] = ACTIONS(1625), + [anon_sym___alignof__] = ACTIONS(1625), + [anon_sym___alignof] = ACTIONS(1625), + [anon_sym__alignof] = ACTIONS(1625), + [anon_sym_alignof] = ACTIONS(1625), + [anon_sym__Alignof] = ACTIONS(1625), + [anon_sym_offsetof] = ACTIONS(1625), + [anon_sym__Generic] = ACTIONS(1625), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym___asm__] = ACTIONS(1625), + [anon_sym___asm] = ACTIONS(1625), + [sym_number_literal] = ACTIONS(1627), + [anon_sym_L_SQUOTE] = ACTIONS(1627), + [anon_sym_u_SQUOTE] = ACTIONS(1627), + [anon_sym_U_SQUOTE] = ACTIONS(1627), + [anon_sym_u8_SQUOTE] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_L_DQUOTE] = ACTIONS(1627), + [anon_sym_u_DQUOTE] = ACTIONS(1627), + [anon_sym_U_DQUOTE] = ACTIONS(1627), + [anon_sym_u8_DQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [anon_sym_NULL] = ACTIONS(1625), + [anon_sym_nullptr] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + }, + [STATE(192)] = { + [sym_identifier] = ACTIONS(1629), + [aux_sym_preproc_include_token1] = ACTIONS(1629), + [aux_sym_preproc_def_token1] = ACTIONS(1629), + [aux_sym_preproc_if_token1] = ACTIONS(1629), + [aux_sym_preproc_if_token2] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), + [aux_sym_preproc_else_token1] = ACTIONS(1629), + [aux_sym_preproc_elif_token1] = ACTIONS(1629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1629), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1629), + [sym_preproc_directive] = ACTIONS(1629), + [anon_sym_LPAREN2] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym___extension__] = ACTIONS(1629), + [anon_sym_typedef] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym___attribute__] = ACTIONS(1629), + [anon_sym___attribute] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), + [anon_sym___declspec] = ACTIONS(1629), + [anon_sym___cdecl] = ACTIONS(1629), + [anon_sym___clrcall] = ACTIONS(1629), + [anon_sym___stdcall] = ACTIONS(1629), + [anon_sym___fastcall] = ACTIONS(1629), + [anon_sym___thiscall] = ACTIONS(1629), + [anon_sym___vectorcall] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_signed] = ACTIONS(1629), + [anon_sym_unsigned] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_auto] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_inline] = ACTIONS(1629), + [anon_sym___inline] = ACTIONS(1629), + [anon_sym___inline__] = ACTIONS(1629), + [anon_sym___forceinline] = ACTIONS(1629), + [anon_sym_thread_local] = ACTIONS(1629), + [anon_sym___thread] = ACTIONS(1629), + [anon_sym_constexpr] = ACTIONS(1629), + [anon_sym_volatile] = ACTIONS(1629), + [anon_sym_restrict] = ACTIONS(1629), + [anon_sym___restrict__] = ACTIONS(1629), + [anon_sym__Atomic] = ACTIONS(1629), + [anon_sym__Noreturn] = ACTIONS(1629), + [anon_sym_noreturn] = ACTIONS(1629), + [anon_sym__Nonnull] = ACTIONS(1629), + [anon_sym_alignas] = ACTIONS(1629), + [anon_sym__Alignas] = ACTIONS(1629), + [sym_primitive_type] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_goto] = ACTIONS(1629), + [anon_sym___try] = ACTIONS(1629), + [anon_sym___leave] = ACTIONS(1629), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_sizeof] = ACTIONS(1629), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1629), + [anon_sym__Generic] = ACTIONS(1629), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym___asm__] = ACTIONS(1629), + [anon_sym___asm] = ACTIONS(1629), + [sym_number_literal] = ACTIONS(1631), + [anon_sym_L_SQUOTE] = ACTIONS(1631), + [anon_sym_u_SQUOTE] = ACTIONS(1631), + [anon_sym_U_SQUOTE] = ACTIONS(1631), + [anon_sym_u8_SQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [anon_sym_NULL] = ACTIONS(1629), + [anon_sym_nullptr] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + }, + [STATE(193)] = { + [sym_identifier] = ACTIONS(1633), + [aux_sym_preproc_include_token1] = ACTIONS(1633), + [aux_sym_preproc_def_token1] = ACTIONS(1633), + [aux_sym_preproc_if_token1] = ACTIONS(1633), + [aux_sym_preproc_if_token2] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), + [aux_sym_preproc_else_token1] = ACTIONS(1633), + [aux_sym_preproc_elif_token1] = ACTIONS(1633), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1633), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1633), + [sym_preproc_directive] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym___extension__] = ACTIONS(1633), + [anon_sym_typedef] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym___attribute__] = ACTIONS(1633), + [anon_sym___attribute] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), + [anon_sym___declspec] = ACTIONS(1633), + [anon_sym___cdecl] = ACTIONS(1633), + [anon_sym___clrcall] = ACTIONS(1633), + [anon_sym___stdcall] = ACTIONS(1633), + [anon_sym___fastcall] = ACTIONS(1633), + [anon_sym___thiscall] = ACTIONS(1633), + [anon_sym___vectorcall] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_signed] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_auto] = ACTIONS(1633), + [anon_sym_register] = ACTIONS(1633), + [anon_sym_inline] = ACTIONS(1633), + [anon_sym___inline] = ACTIONS(1633), + [anon_sym___inline__] = ACTIONS(1633), + [anon_sym___forceinline] = ACTIONS(1633), + [anon_sym_thread_local] = ACTIONS(1633), + [anon_sym___thread] = ACTIONS(1633), + [anon_sym_constexpr] = ACTIONS(1633), + [anon_sym_volatile] = ACTIONS(1633), + [anon_sym_restrict] = ACTIONS(1633), + [anon_sym___restrict__] = ACTIONS(1633), + [anon_sym__Atomic] = ACTIONS(1633), + [anon_sym__Noreturn] = ACTIONS(1633), + [anon_sym_noreturn] = ACTIONS(1633), + [anon_sym__Nonnull] = ACTIONS(1633), + [anon_sym_alignas] = ACTIONS(1633), + [anon_sym__Alignas] = ACTIONS(1633), + [sym_primitive_type] = ACTIONS(1633), + [anon_sym_enum] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1633), + [anon_sym_union] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_case] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_goto] = ACTIONS(1633), + [anon_sym___try] = ACTIONS(1633), + [anon_sym___leave] = ACTIONS(1633), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(1633), + [anon_sym___alignof__] = ACTIONS(1633), + [anon_sym___alignof] = ACTIONS(1633), + [anon_sym__alignof] = ACTIONS(1633), + [anon_sym_alignof] = ACTIONS(1633), + [anon_sym__Alignof] = ACTIONS(1633), + [anon_sym_offsetof] = ACTIONS(1633), + [anon_sym__Generic] = ACTIONS(1633), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym___asm__] = ACTIONS(1633), + [anon_sym___asm] = ACTIONS(1633), + [sym_number_literal] = ACTIONS(1635), + [anon_sym_L_SQUOTE] = ACTIONS(1635), + [anon_sym_u_SQUOTE] = ACTIONS(1635), + [anon_sym_U_SQUOTE] = ACTIONS(1635), + [anon_sym_u8_SQUOTE] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_L_DQUOTE] = ACTIONS(1635), + [anon_sym_u_DQUOTE] = ACTIONS(1635), + [anon_sym_U_DQUOTE] = ACTIONS(1635), + [anon_sym_u8_DQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_true] = ACTIONS(1633), + [sym_false] = ACTIONS(1633), + [anon_sym_NULL] = ACTIONS(1633), + [anon_sym_nullptr] = ACTIONS(1633), + [sym_comment] = ACTIONS(3), + }, + [STATE(194)] = { + [sym_identifier] = ACTIONS(1637), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token2] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), + [aux_sym_preproc_else_token1] = ACTIONS(1637), + [aux_sym_preproc_elif_token1] = ACTIONS(1637), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1637), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1637), + [sym_preproc_directive] = ACTIONS(1637), + [anon_sym_LPAREN2] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym___extension__] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym___attribute__] = ACTIONS(1637), + [anon_sym___attribute] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1637), + [anon_sym___cdecl] = ACTIONS(1637), + [anon_sym___clrcall] = ACTIONS(1637), + [anon_sym___stdcall] = ACTIONS(1637), + [anon_sym___fastcall] = ACTIONS(1637), + [anon_sym___thiscall] = ACTIONS(1637), + [anon_sym___vectorcall] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_auto] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym___inline] = ACTIONS(1637), + [anon_sym___inline__] = ACTIONS(1637), + [anon_sym___forceinline] = ACTIONS(1637), + [anon_sym_thread_local] = ACTIONS(1637), + [anon_sym___thread] = ACTIONS(1637), + [anon_sym_constexpr] = ACTIONS(1637), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_restrict] = ACTIONS(1637), + [anon_sym___restrict__] = ACTIONS(1637), + [anon_sym__Atomic] = ACTIONS(1637), + [anon_sym__Noreturn] = ACTIONS(1637), + [anon_sym_noreturn] = ACTIONS(1637), + [anon_sym__Nonnull] = ACTIONS(1637), + [anon_sym_alignas] = ACTIONS(1637), + [anon_sym__Alignas] = ACTIONS(1637), + [sym_primitive_type] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_case] = ACTIONS(1637), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_goto] = ACTIONS(1637), + [anon_sym___try] = ACTIONS(1637), + [anon_sym___leave] = ACTIONS(1637), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1637), + [anon_sym___alignof__] = ACTIONS(1637), + [anon_sym___alignof] = ACTIONS(1637), + [anon_sym__alignof] = ACTIONS(1637), + [anon_sym_alignof] = ACTIONS(1637), + [anon_sym__Alignof] = ACTIONS(1637), + [anon_sym_offsetof] = ACTIONS(1637), + [anon_sym__Generic] = ACTIONS(1637), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym___asm__] = ACTIONS(1637), + [anon_sym___asm] = ACTIONS(1637), + [sym_number_literal] = ACTIONS(1639), + [anon_sym_L_SQUOTE] = ACTIONS(1639), + [anon_sym_u_SQUOTE] = ACTIONS(1639), + [anon_sym_U_SQUOTE] = ACTIONS(1639), + [anon_sym_u8_SQUOTE] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_L_DQUOTE] = ACTIONS(1639), + [anon_sym_u_DQUOTE] = ACTIONS(1639), + [anon_sym_U_DQUOTE] = ACTIONS(1639), + [anon_sym_u8_DQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [sym_true] = ACTIONS(1637), + [sym_false] = ACTIONS(1637), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + }, + [STATE(195)] = { + [sym_identifier] = ACTIONS(1641), + [aux_sym_preproc_include_token1] = ACTIONS(1641), + [aux_sym_preproc_def_token1] = ACTIONS(1641), + [aux_sym_preproc_if_token1] = ACTIONS(1641), + [aux_sym_preproc_if_token2] = ACTIONS(1641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), + [aux_sym_preproc_else_token1] = ACTIONS(1641), + [aux_sym_preproc_elif_token1] = ACTIONS(1641), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1641), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1641), + [sym_preproc_directive] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym___extension__] = ACTIONS(1641), + [anon_sym_typedef] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym___attribute__] = ACTIONS(1641), + [anon_sym___attribute] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1643), + [anon_sym___declspec] = ACTIONS(1641), + [anon_sym___cdecl] = ACTIONS(1641), + [anon_sym___clrcall] = ACTIONS(1641), + [anon_sym___stdcall] = ACTIONS(1641), + [anon_sym___fastcall] = ACTIONS(1641), + [anon_sym___thiscall] = ACTIONS(1641), + [anon_sym___vectorcall] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1641), + [anon_sym_unsigned] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_auto] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_inline] = ACTIONS(1641), + [anon_sym___inline] = ACTIONS(1641), + [anon_sym___inline__] = ACTIONS(1641), + [anon_sym___forceinline] = ACTIONS(1641), + [anon_sym_thread_local] = ACTIONS(1641), + [anon_sym___thread] = ACTIONS(1641), + [anon_sym_constexpr] = ACTIONS(1641), + [anon_sym_volatile] = ACTIONS(1641), + [anon_sym_restrict] = ACTIONS(1641), + [anon_sym___restrict__] = ACTIONS(1641), + [anon_sym__Atomic] = ACTIONS(1641), + [anon_sym__Noreturn] = ACTIONS(1641), + [anon_sym_noreturn] = ACTIONS(1641), + [anon_sym__Nonnull] = ACTIONS(1641), + [anon_sym_alignas] = ACTIONS(1641), + [anon_sym__Alignas] = ACTIONS(1641), + [sym_primitive_type] = ACTIONS(1641), + [anon_sym_enum] = ACTIONS(1641), + [anon_sym_struct] = ACTIONS(1641), + [anon_sym_union] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_case] = ACTIONS(1641), + [anon_sym_default] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_goto] = ACTIONS(1641), + [anon_sym___try] = ACTIONS(1641), + [anon_sym___leave] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_sizeof] = ACTIONS(1641), + [anon_sym___alignof__] = ACTIONS(1641), + [anon_sym___alignof] = ACTIONS(1641), + [anon_sym__alignof] = ACTIONS(1641), + [anon_sym_alignof] = ACTIONS(1641), + [anon_sym__Alignof] = ACTIONS(1641), + [anon_sym_offsetof] = ACTIONS(1641), + [anon_sym__Generic] = ACTIONS(1641), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym___asm__] = ACTIONS(1641), + [anon_sym___asm] = ACTIONS(1641), + [sym_number_literal] = ACTIONS(1643), + [anon_sym_L_SQUOTE] = ACTIONS(1643), + [anon_sym_u_SQUOTE] = ACTIONS(1643), + [anon_sym_U_SQUOTE] = ACTIONS(1643), + [anon_sym_u8_SQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_L_DQUOTE] = ACTIONS(1643), + [anon_sym_u_DQUOTE] = ACTIONS(1643), + [anon_sym_U_DQUOTE] = ACTIONS(1643), + [anon_sym_u8_DQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [anon_sym_NULL] = ACTIONS(1641), + [anon_sym_nullptr] = ACTIONS(1641), + [sym_comment] = ACTIONS(3), + }, + [STATE(196)] = { + [sym_else_clause] = STATE(237), [sym_identifier] = ACTIONS(1340), [aux_sym_preproc_include_token1] = ACTIONS(1340), [aux_sym_preproc_def_token1] = ACTIONS(1340), [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), [sym_preproc_directive] = ACTIONS(1340), @@ -51571,6 +40174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1340), [anon_sym___attribute__] = ACTIONS(1340), [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), [anon_sym___declspec] = ACTIONS(1340), [anon_sym___cdecl] = ACTIONS(1340), @@ -51593,7 +40197,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1340), [anon_sym_thread_local] = ACTIONS(1340), [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), [anon_sym_constexpr] = ACTIONS(1340), [anon_sym_volatile] = ACTIONS(1340), [anon_sym_restrict] = ACTIONS(1340), @@ -51609,6 +40212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1340), [anon_sym_union] = ACTIONS(1340), [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1645), [anon_sym_switch] = ACTIONS(1340), [anon_sym_case] = ACTIONS(1340), [anon_sym_default] = ACTIONS(1340), @@ -51619,6 +40223,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1340), [anon_sym_continue] = ACTIONS(1340), [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), [anon_sym_DASH_DASH] = ACTIONS(1342), [anon_sym_PLUS_PLUS] = ACTIONS(1342), [anon_sym_sizeof] = ACTIONS(1340), @@ -51649,3112 +40255,2488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(1523), - [sym_identifier] = ACTIONS(1525), - [aux_sym_preproc_include_token1] = ACTIONS(1525), - [aux_sym_preproc_def_token1] = ACTIONS(1525), - [aux_sym_preproc_if_token1] = ACTIONS(1525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1525), - [sym_preproc_directive] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym___extension__] = ACTIONS(1525), - [anon_sym_typedef] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1525), - [anon_sym___attribute__] = ACTIONS(1525), - [anon_sym___attribute] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1523), - [anon_sym___declspec] = ACTIONS(1525), - [anon_sym___cdecl] = ACTIONS(1525), - [anon_sym___clrcall] = ACTIONS(1525), - [anon_sym___stdcall] = ACTIONS(1525), - [anon_sym___fastcall] = ACTIONS(1525), - [anon_sym___thiscall] = ACTIONS(1525), - [anon_sym___vectorcall] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_signed] = ACTIONS(1525), - [anon_sym_unsigned] = ACTIONS(1525), - [anon_sym_long] = ACTIONS(1525), - [anon_sym_short] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_auto] = ACTIONS(1525), - [anon_sym_register] = ACTIONS(1525), - [anon_sym_inline] = ACTIONS(1525), - [anon_sym___inline] = ACTIONS(1525), - [anon_sym___inline__] = ACTIONS(1525), - [anon_sym___forceinline] = ACTIONS(1525), - [anon_sym_thread_local] = ACTIONS(1525), - [anon_sym___thread] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_constexpr] = ACTIONS(1525), - [anon_sym_volatile] = ACTIONS(1525), - [anon_sym_restrict] = ACTIONS(1525), - [anon_sym___restrict__] = ACTIONS(1525), - [anon_sym__Atomic] = ACTIONS(1525), - [anon_sym__Noreturn] = ACTIONS(1525), - [anon_sym_noreturn] = ACTIONS(1525), - [anon_sym__Nonnull] = ACTIONS(1525), - [anon_sym_alignas] = ACTIONS(1525), - [anon_sym__Alignas] = ACTIONS(1525), - [sym_primitive_type] = ACTIONS(1525), - [anon_sym_enum] = ACTIONS(1525), - [anon_sym_struct] = ACTIONS(1525), - [anon_sym_union] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_switch] = ACTIONS(1525), - [anon_sym_case] = ACTIONS(1525), - [anon_sym_default] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_goto] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1525), - [anon_sym___alignof__] = ACTIONS(1525), - [anon_sym___alignof] = ACTIONS(1525), - [anon_sym__alignof] = ACTIONS(1525), - [anon_sym_alignof] = ACTIONS(1525), - [anon_sym__Alignof] = ACTIONS(1525), - [anon_sym_offsetof] = ACTIONS(1525), - [anon_sym__Generic] = ACTIONS(1525), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym___asm__] = ACTIONS(1525), - [anon_sym___asm] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1523), - [anon_sym_L_SQUOTE] = ACTIONS(1523), - [anon_sym_u_SQUOTE] = ACTIONS(1523), - [anon_sym_U_SQUOTE] = ACTIONS(1523), - [anon_sym_u8_SQUOTE] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_L_DQUOTE] = ACTIONS(1523), - [anon_sym_u_DQUOTE] = ACTIONS(1523), - [anon_sym_U_DQUOTE] = ACTIONS(1523), - [anon_sym_u8_DQUOTE] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [sym_true] = ACTIONS(1525), - [sym_false] = ACTIONS(1525), - [anon_sym_NULL] = ACTIONS(1525), - [anon_sym_nullptr] = ACTIONS(1525), - [sym_comment] = ACTIONS(3), - }, - [339] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(172), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(65), - [anon_sym_default] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym___extension__] = ACTIONS(1529), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym___attribute] = ACTIONS(1529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1527), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_auto] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym___inline] = ACTIONS(1529), - [anon_sym___inline__] = ACTIONS(1529), - [anon_sym___forceinline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym___thread] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym___restrict__] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym__Noreturn] = ACTIONS(1529), - [anon_sym_noreturn] = ACTIONS(1529), - [anon_sym__Nonnull] = ACTIONS(1529), - [anon_sym_alignas] = ACTIONS(1529), - [anon_sym__Alignas] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1529), - [anon_sym___alignof__] = ACTIONS(1529), - [anon_sym___alignof] = ACTIONS(1529), - [anon_sym__alignof] = ACTIONS(1529), - [anon_sym_alignof] = ACTIONS(1529), - [anon_sym__Alignof] = ACTIONS(1529), - [anon_sym_offsetof] = ACTIONS(1529), - [anon_sym__Generic] = ACTIONS(1529), - [anon_sym_asm] = ACTIONS(1529), - [anon_sym___asm__] = ACTIONS(1529), - [anon_sym___asm] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1527), - [anon_sym_u_SQUOTE] = ACTIONS(1527), - [anon_sym_U_SQUOTE] = ACTIONS(1527), - [anon_sym_u8_SQUOTE] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_L_DQUOTE] = ACTIONS(1527), - [anon_sym_u_DQUOTE] = ACTIONS(1527), - [anon_sym_U_DQUOTE] = ACTIONS(1527), - [anon_sym_u8_DQUOTE] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [anon_sym_NULL] = ACTIONS(1529), - [anon_sym_nullptr] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - }, - [341] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(160), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(65), - [anon_sym_default] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym___attribute] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [anon_sym__Nonnull] = ACTIONS(1268), - [anon_sym_alignas] = ACTIONS(1268), - [anon_sym__Alignas] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [anon_sym___asm] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym___attribute] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [anon_sym__Nonnull] = ACTIONS(1296), - [anon_sym_alignas] = ACTIONS(1296), - [anon_sym__Alignas] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [anon_sym___asm] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym___attribute] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [anon_sym__Nonnull] = ACTIONS(1308), - [anon_sym_alignas] = ACTIONS(1308), - [anon_sym__Alignas] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [anon_sym___asm] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [STATE(197)] = { + [sym_else_clause] = STATE(272), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [anon_sym__Nonnull] = ACTIONS(1340), + [anon_sym_alignas] = ACTIONS(1340), + [anon_sym__Alignas] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1647), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [anon_sym___asm] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym___attribute] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [anon_sym__Nonnull] = ACTIONS(1316), - [anon_sym_alignas] = ACTIONS(1316), - [anon_sym__Alignas] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [anon_sym___asm] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym___attribute] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [anon_sym__Nonnull] = ACTIONS(1320), - [anon_sym_alignas] = ACTIONS(1320), - [anon_sym__Alignas] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [anon_sym___asm] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym___attribute] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [anon_sym__Nonnull] = ACTIONS(1324), - [anon_sym_alignas] = ACTIONS(1324), - [anon_sym__Alignas] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [anon_sym___asm] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym___attribute] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [anon_sym__Nonnull] = ACTIONS(1328), - [anon_sym_alignas] = ACTIONS(1328), - [anon_sym__Alignas] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [anon_sym___asm] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), - [sym_comment] = ACTIONS(3), - }, - [349] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(167), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(198)] = { + [sym_else_clause] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [anon_sym__Nonnull] = ACTIONS(1340), + [anon_sym_alignas] = ACTIONS(1340), + [anon_sym__Alignas] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1649), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [anon_sym___asm] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1531), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(199)] = { + [sym_else_clause] = STATE(237), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [anon_sym__Nonnull] = ACTIONS(1340), + [anon_sym_alignas] = ACTIONS(1340), + [anon_sym__Alignas] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [anon_sym___asm] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(82), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1531), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(200)] = { + [sym_else_clause] = STATE(272), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [anon_sym__Nonnull] = ACTIONS(1340), + [anon_sym_alignas] = ACTIONS(1340), + [anon_sym__Alignas] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [anon_sym___asm] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_attribute_declaration] = STATE(352), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(114), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_case] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1572), - [anon_sym___try] = ACTIONS(1575), - [anon_sym___leave] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [STATE(201)] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym___attribute] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [anon_sym__Nonnull] = ACTIONS(1436), + [anon_sym_alignas] = ACTIONS(1436), + [anon_sym__Alignas] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [anon_sym___asm] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(97), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1531), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(202)] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___attribute] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym__Nonnull] = ACTIONS(1396), + [anon_sym_alignas] = ACTIONS(1396), + [anon_sym__Alignas] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [anon_sym___asm] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(99), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1531), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(203)] = { + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym___attribute] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [anon_sym__Nonnull] = ACTIONS(1372), + [anon_sym_alignas] = ACTIONS(1372), + [anon_sym__Alignas] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym___try] = ACTIONS(1372), + [anon_sym___leave] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [anon_sym___asm] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(224), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(204)] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___attribute] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym__Nonnull] = ACTIONS(1396), + [anon_sym_alignas] = ACTIONS(1396), + [anon_sym__Alignas] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [anon_sym___asm] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_attribute_declaration] = STATE(356), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(241), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(356), - [sym_identifier] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_goto] = ACTIONS(1617), - [anon_sym___try] = ACTIONS(1620), - [anon_sym___leave] = ACTIONS(1487), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [STATE(205)] = { + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym___attribute] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = 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_alignas] = ACTIONS(1384), + [anon_sym__Alignas] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym___try] = ACTIONS(1384), + [anon_sym___leave] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [anon_sym___asm] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym___attribute] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [anon_sym__Nonnull] = ACTIONS(1344), - [anon_sym_alignas] = ACTIONS(1344), - [anon_sym__Alignas] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [anon_sym___asm] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [358] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(172), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [359] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(160), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym___attribute] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [anon_sym__Nonnull] = ACTIONS(1332), - [anon_sym_alignas] = ACTIONS(1332), - [anon_sym__Alignas] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [anon_sym___asm] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, - [361] = { - [sym_attribute_declaration] = STATE(356), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(241), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(356), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(206)] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym___attribute] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [anon_sym__Nonnull] = ACTIONS(1410), + [anon_sym_alignas] = ACTIONS(1410), + [anon_sym__Alignas] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [anon_sym___asm] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1626), - [aux_sym_preproc_include_token1] = ACTIONS(1626), - [aux_sym_preproc_def_token1] = ACTIONS(1626), - [aux_sym_preproc_if_token1] = ACTIONS(1626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1626), - [sym_preproc_directive] = ACTIONS(1626), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym___extension__] = ACTIONS(1626), - [anon_sym_typedef] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym___attribute__] = ACTIONS(1626), - [anon_sym___attribute] = ACTIONS(1626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1626), - [anon_sym___cdecl] = ACTIONS(1626), - [anon_sym___clrcall] = ACTIONS(1626), - [anon_sym___stdcall] = ACTIONS(1626), - [anon_sym___fastcall] = ACTIONS(1626), - [anon_sym___thiscall] = ACTIONS(1626), - [anon_sym___vectorcall] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_signed] = ACTIONS(1626), - [anon_sym_unsigned] = ACTIONS(1626), - [anon_sym_long] = ACTIONS(1626), - [anon_sym_short] = ACTIONS(1626), - [anon_sym_static] = ACTIONS(1626), - [anon_sym_auto] = ACTIONS(1626), - [anon_sym_register] = ACTIONS(1626), - [anon_sym_inline] = ACTIONS(1626), - [anon_sym___inline] = ACTIONS(1626), - [anon_sym___inline__] = ACTIONS(1626), - [anon_sym___forceinline] = ACTIONS(1626), - [anon_sym_thread_local] = ACTIONS(1626), - [anon_sym___thread] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [anon_sym_constexpr] = ACTIONS(1626), - [anon_sym_volatile] = ACTIONS(1626), - [anon_sym_restrict] = ACTIONS(1626), - [anon_sym___restrict__] = ACTIONS(1626), - [anon_sym__Atomic] = ACTIONS(1626), - [anon_sym__Noreturn] = ACTIONS(1626), - [anon_sym_noreturn] = ACTIONS(1626), - [anon_sym__Nonnull] = ACTIONS(1626), - [anon_sym_alignas] = ACTIONS(1626), - [anon_sym__Alignas] = ACTIONS(1626), - [sym_primitive_type] = ACTIONS(1626), - [anon_sym_enum] = ACTIONS(1626), - [anon_sym_struct] = ACTIONS(1626), - [anon_sym_union] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_case] = ACTIONS(1626), - [anon_sym_default] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_do] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_goto] = ACTIONS(1626), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1626), - [anon_sym___alignof__] = ACTIONS(1626), - [anon_sym___alignof] = ACTIONS(1626), - [anon_sym__alignof] = ACTIONS(1626), - [anon_sym_alignof] = ACTIONS(1626), - [anon_sym__Alignof] = ACTIONS(1626), - [anon_sym_offsetof] = ACTIONS(1626), - [anon_sym__Generic] = ACTIONS(1626), - [anon_sym_asm] = ACTIONS(1626), - [anon_sym___asm__] = ACTIONS(1626), - [anon_sym___asm] = ACTIONS(1626), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1623), - [anon_sym_u_SQUOTE] = ACTIONS(1623), - [anon_sym_U_SQUOTE] = ACTIONS(1623), - [anon_sym_u8_SQUOTE] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_L_DQUOTE] = ACTIONS(1623), - [anon_sym_u_DQUOTE] = ACTIONS(1623), - [anon_sym_U_DQUOTE] = ACTIONS(1623), - [anon_sym_u8_DQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym_true] = ACTIONS(1626), - [sym_false] = ACTIONS(1626), - [anon_sym_NULL] = ACTIONS(1626), - [anon_sym_nullptr] = ACTIONS(1626), - [sym_comment] = ACTIONS(3), - }, - [363] = { - [sym_attribute_declaration] = STATE(378), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(148), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(207)] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___attribute] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [anon_sym__Nonnull] = ACTIONS(1348), + [anon_sym_alignas] = ACTIONS(1348), + [anon_sym__Alignas] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [anon_sym___asm] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [364] = { - [sym_attribute_declaration] = STATE(378), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(193), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(208)] = { + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym___attribute] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [anon_sym__Nonnull] = ACTIONS(1388), + [anon_sym_alignas] = ACTIONS(1388), + [anon_sym__Alignas] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym___try] = ACTIONS(1388), + [anon_sym___leave] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [anon_sym___asm] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, - [365] = { - [sym_attribute_declaration] = STATE(365), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(185), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_switch] = ACTIONS(1643), - [anon_sym_case] = ACTIONS(1646), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1670), - [anon_sym___try] = ACTIONS(1673), - [anon_sym___leave] = ACTIONS(1676), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [STATE(209)] = { + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___attribute] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [anon_sym__Nonnull] = ACTIONS(1364), + [anon_sym_alignas] = ACTIONS(1364), + [anon_sym__Alignas] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [anon_sym___asm] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(241), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_case] = ACTIONS(1688), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_goto] = ACTIONS(1617), - [anon_sym___try] = ACTIONS(1700), - [anon_sym___leave] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1499), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym___asm__] = ACTIONS(1505), - [anon_sym___asm] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [anon_sym_NULL] = ACTIONS(1520), - [anon_sym_nullptr] = ACTIONS(1520), + [STATE(210)] = { + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym___attribute] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [anon_sym__Nonnull] = ACTIONS(1424), + [anon_sym_alignas] = ACTIONS(1424), + [anon_sym__Alignas] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [anon_sym___asm] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym___attribute] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [anon_sym__Nonnull] = ACTIONS(1352), - [anon_sym_alignas] = ACTIONS(1352), - [anon_sym__Alignas] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [anon_sym___asm] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [STATE(211)] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___attribute] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [anon_sym__Nonnull] = ACTIONS(1364), + [anon_sym_alignas] = ACTIONS(1364), + [anon_sym__Alignas] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [anon_sym___asm] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_attribute_declaration] = STATE(349), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(150), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(212)] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___attribute] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [anon_sym__Nonnull] = ACTIONS(1368), + [anon_sym_alignas] = ACTIONS(1368), + [anon_sym__Alignas] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [anon_sym___asm] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1358), + [STATE(213)] = { + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym___attribute] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [anon_sym__Nonnull] = ACTIONS(1372), + [anon_sym_alignas] = ACTIONS(1372), + [anon_sym__Alignas] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym___try] = ACTIONS(1372), + [anon_sym___leave] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [anon_sym___asm] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [STATE(214)] = { + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym___attribute] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [anon_sym__Nonnull] = ACTIONS(1444), + [anon_sym_alignas] = ACTIONS(1444), + [anon_sym__Alignas] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [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(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [anon_sym___asm] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [STATE(215)] = { + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym___attribute] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [anon_sym__Nonnull] = ACTIONS(1428), + [anon_sym_alignas] = ACTIONS(1428), + [anon_sym__Alignas] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [anon_sym___asm] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [STATE(216)] = { + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym___attribute] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [anon_sym__Nonnull] = ACTIONS(1448), + [anon_sym_alignas] = ACTIONS(1448), + [anon_sym__Alignas] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [anon_sym___asm] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + }, + [STATE(217)] = { + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym___attribute] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [anon_sym__Nonnull] = ACTIONS(1400), + [anon_sym_alignas] = ACTIONS(1400), + [anon_sym__Alignas] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym___try] = ACTIONS(1400), + [anon_sym___leave] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [anon_sym___asm] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + }, + [STATE(218)] = { + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym___attribute] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [anon_sym__Nonnull] = ACTIONS(1376), + [anon_sym_alignas] = ACTIONS(1376), + [anon_sym__Alignas] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [anon_sym___asm] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + }, + [STATE(219)] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym___attribute] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = 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_alignas] = ACTIONS(1384), + [anon_sym__Alignas] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym___try] = ACTIONS(1384), + [anon_sym___leave] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [anon_sym___asm] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [STATE(220)] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym___attribute] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [anon_sym__Nonnull] = ACTIONS(1410), + [anon_sym_alignas] = ACTIONS(1410), + [anon_sym__Alignas] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [anon_sym___asm] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [STATE(221)] = { [sym_identifier] = ACTIONS(1356), [aux_sym_preproc_include_token1] = ACTIONS(1356), [aux_sym_preproc_def_token1] = ACTIONS(1356), [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), [sym_preproc_directive] = ACTIONS(1356), @@ -54771,6 +42753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1356), [anon_sym___attribute__] = ACTIONS(1356), [anon_sym___attribute] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), [anon_sym___declspec] = ACTIONS(1356), [anon_sym___cdecl] = ACTIONS(1356), @@ -54793,7 +42776,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1356), [anon_sym_thread_local] = ACTIONS(1356), [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), [anon_sym_constexpr] = ACTIONS(1356), [anon_sym_volatile] = ACTIONS(1356), [anon_sym_restrict] = ACTIONS(1356), @@ -54809,6 +42791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1356), [anon_sym_union] = ACTIONS(1356), [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), [anon_sym_switch] = ACTIONS(1356), [anon_sym_case] = ACTIONS(1356), [anon_sym_default] = ACTIONS(1356), @@ -54819,6 +42802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1356), [anon_sym_continue] = ACTIONS(1356), [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), [anon_sym_DASH_DASH] = ACTIONS(1358), [anon_sym_PLUS_PLUS] = ACTIONS(1358), [anon_sym_sizeof] = ACTIONS(1356), @@ -54849,412 +42834,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_attribute_declaration] = STATE(378), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(205), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [371] = { - [sym_attribute_declaration] = STATE(378), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(256), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [372] = { - [sym_attribute_declaration] = STATE(349), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(177), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_if] = ACTIONS(382), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_while] = ACTIONS(390), - [anon_sym_do] = ACTIONS(392), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_break] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(402), - [anon_sym___try] = ACTIONS(404), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [373] = { - [sym_attribute_declaration] = STATE(352), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_statement] = STATE(114), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_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(1049), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1531), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(139), - [anon_sym_default] = ACTIONS(141), - [anon_sym_while] = ACTIONS(143), - [anon_sym_do] = ACTIONS(145), - [anon_sym_for] = ACTIONS(147), - [anon_sym_return] = ACTIONS(149), - [anon_sym_break] = ACTIONS(151), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_goto] = ACTIONS(155), - [anon_sym___try] = ACTIONS(157), - [anon_sym___leave] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(1366), + [STATE(222)] = { [sym_identifier] = ACTIONS(1364), [aux_sym_preproc_include_token1] = ACTIONS(1364), [aux_sym_preproc_def_token1] = ACTIONS(1364), [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), [sym_preproc_directive] = ACTIONS(1364), @@ -55271,6 +42856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1364), [anon_sym___attribute__] = ACTIONS(1364), [anon_sym___attribute] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), [anon_sym___declspec] = ACTIONS(1364), [anon_sym___cdecl] = ACTIONS(1364), @@ -55293,7 +42879,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___forceinline] = ACTIONS(1364), [anon_sym_thread_local] = ACTIONS(1364), [anon_sym___thread] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), [anon_sym_constexpr] = ACTIONS(1364), [anon_sym_volatile] = ACTIONS(1364), [anon_sym_restrict] = ACTIONS(1364), @@ -55309,6 +42894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1364), [anon_sym_union] = ACTIONS(1364), [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), [anon_sym_switch] = ACTIONS(1364), [anon_sym_case] = ACTIONS(1364), [anon_sym_default] = ACTIONS(1364), @@ -55319,6 +42905,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1364), [anon_sym_continue] = ACTIONS(1364), [anon_sym_goto] = ACTIONS(1364), + [anon_sym___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), [anon_sym_DASH_DASH] = ACTIONS(1366), [anon_sym_PLUS_PLUS] = ACTIONS(1366), [anon_sym_sizeof] = ACTIONS(1364), @@ -55349,7467 +42937,44366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_attribute_declaration] = STATE(366), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_statement] = STATE(241), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(159), - [sym_expression] = STATE(1074), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(65), - [anon_sym_default] = ACTIONS(67), - [anon_sym_while] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(73), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(931), - [anon_sym___leave] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [376] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(2011), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(223)] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___attribute] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [anon_sym__Nonnull] = ACTIONS(1368), + [anon_sym_alignas] = ACTIONS(1368), + [anon_sym__Alignas] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [anon_sym___asm] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1348), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym___attribute] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym___inline] = ACTIONS(1348), - [anon_sym___inline__] = ACTIONS(1348), - [anon_sym___forceinline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [anon_sym__Nonnull] = ACTIONS(1348), - [anon_sym_alignas] = ACTIONS(1348), - [anon_sym__Alignas] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym___alignof__] = ACTIONS(1348), - [anon_sym___alignof] = ACTIONS(1348), - [anon_sym__alignof] = ACTIONS(1348), - [anon_sym_alignof] = ACTIONS(1348), - [anon_sym__Alignof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [anon_sym___asm] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), + [STATE(224)] = { + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym___attribute] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [anon_sym__Nonnull] = ACTIONS(1372), + [anon_sym_alignas] = ACTIONS(1372), + [anon_sym__Alignas] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym___try] = ACTIONS(1372), + [anon_sym___leave] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [anon_sym___asm] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_attribute_declaration] = STATE(365), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(185), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1052), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1858), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(225)] = { + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym___attribute] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [anon_sym__Nonnull] = ACTIONS(1376), + [anon_sym_alignas] = ACTIONS(1376), + [anon_sym__Alignas] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [anon_sym___asm] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(1988), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(226)] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___attribute] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [anon_sym__Nonnull] = ACTIONS(1348), + [anon_sym_alignas] = ACTIONS(1348), + [anon_sym__Alignas] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [anon_sym___asm] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(2003), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(227)] = { + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym___attribute] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [anon_sym__Nonnull] = ACTIONS(1388), + [anon_sym_alignas] = ACTIONS(1388), + [anon_sym__Alignas] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym___try] = ACTIONS(1388), + [anon_sym___leave] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [anon_sym___asm] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_attribute_declaration] = STATE(361), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_statement] = STATE(406), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym_expression] = STATE(1071), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1906), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_attributed_declarator_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(370), + [STATE(228)] = { + [sym_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token2] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym___attribute] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [anon_sym__Nonnull] = ACTIONS(1392), + [anon_sym_alignas] = ACTIONS(1392), + [anon_sym__Alignas] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym___try] = ACTIONS(1392), + [anon_sym___leave] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [anon_sym___asm] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), + [sym_comment] = ACTIONS(3), + }, + [STATE(229)] = { + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___attribute] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [anon_sym__Nonnull] = ACTIONS(1452), + [anon_sym_alignas] = ACTIONS(1452), + [anon_sym__Alignas] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [anon_sym___asm] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + }, + [STATE(230)] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym___attribute] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [anon_sym__Nonnull] = ACTIONS(1400), + [anon_sym_alignas] = ACTIONS(1400), + [anon_sym__Alignas] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym___try] = ACTIONS(1400), + [anon_sym___leave] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [anon_sym___asm] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + }, + [STATE(231)] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token2] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym___attribute] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [anon_sym__Nonnull] = ACTIONS(1412), + [anon_sym_alignas] = ACTIONS(1412), + [anon_sym__Alignas] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym___try] = ACTIONS(1412), + [anon_sym___leave] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [anon_sym___asm] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + }, + [STATE(232)] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token2] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___attribute] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(71), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(75), - [anon_sym_break] = ACTIONS(77), - [anon_sym_continue] = ACTIONS(79), - [anon_sym_goto] = ACTIONS(81), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(406), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [anon_sym__Nonnull] = ACTIONS(1416), + [anon_sym_alignas] = ACTIONS(1416), + [anon_sym__Alignas] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym___try] = ACTIONS(1416), + [anon_sym___leave] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [anon_sym___asm] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(233)] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token2] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym___attribute] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [anon_sym__Nonnull] = ACTIONS(1420), + [anon_sym_alignas] = ACTIONS(1420), + [anon_sym__Alignas] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym___try] = ACTIONS(1420), + [anon_sym___leave] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [anon_sym___asm] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1718), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(234)] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym___attribute] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [anon_sym__Nonnull] = ACTIONS(1456), + [anon_sym_alignas] = ACTIONS(1456), + [anon_sym__Alignas] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [anon_sym___asm] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1720), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(235)] = { + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym___attribute] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [anon_sym__Nonnull] = ACTIONS(1468), + [anon_sym_alignas] = ACTIONS(1468), + [anon_sym__Alignas] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [anon_sym___asm] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(236)] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym___attribute] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [anon_sym__Nonnull] = ACTIONS(1472), + [anon_sym_alignas] = ACTIONS(1472), + [anon_sym__Alignas] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_else] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [anon_sym___asm] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1816), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(237)] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym___attribute] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [anon_sym__Nonnull] = ACTIONS(1380), + [anon_sym_alignas] = ACTIONS(1380), + [anon_sym__Alignas] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [anon_sym___asm] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1875), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(238)] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___attribute] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [anon_sym__Nonnull] = ACTIONS(1348), + [anon_sym_alignas] = ACTIONS(1348), + [anon_sym__Alignas] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [anon_sym___asm] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_expression] = STATE(969), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym___attribute__] = ACTIONS(1714), - [anon_sym___attribute] = ACTIONS(1714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1716), - [anon_sym___declspec] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym___inline] = ACTIONS(1714), - [anon_sym___inline__] = ACTIONS(1714), - [anon_sym___forceinline] = ACTIONS(1714), - [anon_sym_thread_local] = ACTIONS(1714), - [anon_sym___thread] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [sym_primitive_type] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(239)] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym___attribute] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [anon_sym__Nonnull] = ACTIONS(1424), + [anon_sym_alignas] = ACTIONS(1424), + [anon_sym__Alignas] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [anon_sym___asm] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1994), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(240)] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym___attribute] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [anon_sym__Nonnull] = ACTIONS(1428), + [anon_sym_alignas] = ACTIONS(1428), + [anon_sym__Alignas] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [anon_sym___asm] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_expression] = STATE(896), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(682), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(682), - [sym_call_expression] = STATE(682), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(682), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(682), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym___extension__] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_STAR_EQ] = ACTIONS(1388), - [anon_sym_SLASH_EQ] = ACTIONS(1388), - [anon_sym_PERCENT_EQ] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1388), - [anon_sym_DASH_EQ] = ACTIONS(1388), - [anon_sym_LT_LT_EQ] = ACTIONS(1388), - [anon_sym_GT_GT_EQ] = ACTIONS(1388), - [anon_sym_AMP_EQ] = ACTIONS(1388), - [anon_sym_CARET_EQ] = ACTIONS(1388), - [anon_sym_PIPE_EQ] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1736), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(241)] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym___attribute] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym__Nonnull] = ACTIONS(1432), + [anon_sym_alignas] = ACTIONS(1432), + [anon_sym__Alignas] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [anon_sym___asm] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1888), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(242)] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym___attribute] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [anon_sym__Nonnull] = ACTIONS(1436), + [anon_sym_alignas] = ACTIONS(1436), + [anon_sym__Alignas] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [anon_sym___asm] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1983), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(243)] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym___attribute] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [anon_sym__Nonnull] = ACTIONS(1440), + [anon_sym_alignas] = ACTIONS(1440), + [anon_sym__Alignas] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [anon_sym___asm] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, - [393] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1856), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(244)] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym___attribute] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [anon_sym__Nonnull] = ACTIONS(1444), + [anon_sym_alignas] = ACTIONS(1444), + [anon_sym__Alignas] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [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(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [anon_sym___asm] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1790), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(245)] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym___attribute] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [anon_sym__Nonnull] = ACTIONS(1460), + [anon_sym_alignas] = ACTIONS(1460), + [anon_sym__Alignas] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_else] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [anon_sym___asm] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [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(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(2007), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [396] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1832), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [397] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1928), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [398] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1789), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [399] = { - [sym_compound_statement] = STATE(2002), - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1839), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [400] = { - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1105), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1922), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [401] = { - [sym_type_qualifier] = STATE(1015), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(1084), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_expression] = STATE(1107), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_type_descriptor] = STATE(1938), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__type_definition_type_repeat1] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1091), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(246)] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token2] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym___attribute] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [anon_sym__Nonnull] = ACTIONS(1404), + [anon_sym_alignas] = ACTIONS(1404), + [anon_sym__Alignas] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym___try] = ACTIONS(1404), + [anon_sym___leave] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [anon_sym___asm] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, - [402] = { - [sym_identifier] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1740), - [anon_sym_RPAREN] = ACTIONS(1740), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym___extension__] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1740), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1740), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [anon_sym___inline] = ACTIONS(1738), - [anon_sym___inline__] = ACTIONS(1738), - [anon_sym___forceinline] = ACTIONS(1738), - [anon_sym_thread_local] = ACTIONS(1738), - [anon_sym___thread] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_constexpr] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym___restrict__] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym__Noreturn] = ACTIONS(1738), - [anon_sym_noreturn] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym_alignas] = ACTIONS(1738), - [anon_sym__Alignas] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_COLON] = ACTIONS(1740), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym___try] = ACTIONS(1738), - [anon_sym___leave] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [anon_sym___alignof__] = ACTIONS(1738), - [anon_sym___alignof] = ACTIONS(1738), - [anon_sym__alignof] = ACTIONS(1738), - [anon_sym_alignof] = ACTIONS(1738), - [anon_sym__Alignof] = ACTIONS(1738), - [anon_sym_offsetof] = ACTIONS(1738), - [anon_sym__Generic] = ACTIONS(1738), - [anon_sym_asm] = ACTIONS(1738), - [anon_sym___asm__] = ACTIONS(1738), - [anon_sym___asm] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [anon_sym_NULL] = ACTIONS(1738), - [anon_sym_nullptr] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - }, - [403] = { - [sym_identifier] = ACTIONS(1742), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym___extension__] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1744), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [anon_sym___inline] = ACTIONS(1742), - [anon_sym___inline__] = ACTIONS(1742), - [anon_sym___forceinline] = ACTIONS(1742), - [anon_sym_thread_local] = ACTIONS(1742), - [anon_sym___thread] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_constexpr] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym___restrict__] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym__Noreturn] = ACTIONS(1742), - [anon_sym_noreturn] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym_alignas] = ACTIONS(1742), - [anon_sym__Alignas] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_COLON] = ACTIONS(1744), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym___try] = ACTIONS(1742), - [anon_sym___leave] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [anon_sym___alignof__] = ACTIONS(1742), - [anon_sym___alignof] = ACTIONS(1742), - [anon_sym__alignof] = ACTIONS(1742), - [anon_sym_alignof] = ACTIONS(1742), - [anon_sym__Alignof] = ACTIONS(1742), - [anon_sym_offsetof] = ACTIONS(1742), - [anon_sym__Generic] = ACTIONS(1742), - [anon_sym_asm] = ACTIONS(1742), - [anon_sym___asm__] = ACTIONS(1742), - [anon_sym___asm] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [anon_sym_NULL] = ACTIONS(1742), - [anon_sym_nullptr] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - }, - [404] = { - [sym_expression] = STATE(700), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym___attribute] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(247)] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym___attribute] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [anon_sym__Nonnull] = ACTIONS(1388), + [anon_sym_alignas] = ACTIONS(1388), + [anon_sym__Alignas] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym___try] = ACTIONS(1388), + [anon_sym___leave] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [anon_sym___asm] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_expression] = STATE(700), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(845), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(845), - [sym_call_expression] = STATE(845), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(845), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(845), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(714), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1388), - [aux_sym_preproc_if_token2] = ACTIONS(1388), - [aux_sym_preproc_else_token1] = ACTIONS(1388), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1388), + [STATE(248)] = { + [sym_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1754), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - }, - [406] = { - [sym_else_clause] = STATE(243), - [sym_identifier] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym___extension__] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym___attribute] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), - [anon_sym___declspec] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___inline] = ACTIONS(1128), - [anon_sym___inline__] = ACTIONS(1128), - [anon_sym___forceinline] = ACTIONS(1128), - [anon_sym_thread_local] = ACTIONS(1128), - [anon_sym___thread] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym___restrict__] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym__Noreturn] = ACTIONS(1128), - [anon_sym_noreturn] = ACTIONS(1128), - [anon_sym__Nonnull] = ACTIONS(1128), - [anon_sym_alignas] = ACTIONS(1128), - [anon_sym__Alignas] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1756), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1128), - [anon_sym___leave] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym___alignof__] = ACTIONS(1128), - [anon_sym___alignof] = ACTIONS(1128), - [anon_sym__alignof] = ACTIONS(1128), - [anon_sym_alignof] = ACTIONS(1128), - [anon_sym__Alignof] = ACTIONS(1128), - [anon_sym_offsetof] = ACTIONS(1128), - [anon_sym__Generic] = ACTIONS(1128), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym___asm__] = ACTIONS(1128), - [anon_sym___asm] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym_u_SQUOTE] = ACTIONS(1130), - [anon_sym_U_SQUOTE] = ACTIONS(1130), - [anon_sym_u8_SQUOTE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_u_DQUOTE] = ACTIONS(1130), - [anon_sym_U_DQUOTE] = ACTIONS(1130), - [anon_sym_u8_DQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_NULL] = ACTIONS(1128), - [anon_sym_nullptr] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - }, - [407] = { - [sym_identifier] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym___attribute__] = ACTIONS(1765), - [anon_sym___attribute] = ACTIONS(1765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1767), - [anon_sym___declspec] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_signed] = ACTIONS(1765), - [anon_sym_unsigned] = ACTIONS(1765), - [anon_sym_long] = ACTIONS(1765), - [anon_sym_short] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_inline] = ACTIONS(1765), - [anon_sym___inline] = ACTIONS(1765), - [anon_sym___inline__] = ACTIONS(1765), - [anon_sym___forceinline] = ACTIONS(1765), - [anon_sym_thread_local] = ACTIONS(1765), - [anon_sym___thread] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_constexpr] = ACTIONS(1765), - [anon_sym_volatile] = ACTIONS(1765), - [anon_sym_restrict] = ACTIONS(1765), - [anon_sym___restrict__] = ACTIONS(1765), - [anon_sym__Atomic] = ACTIONS(1765), - [anon_sym__Noreturn] = ACTIONS(1765), - [anon_sym_noreturn] = ACTIONS(1765), - [anon_sym__Nonnull] = ACTIONS(1765), - [anon_sym_alignas] = ACTIONS(1765), - [anon_sym__Alignas] = ACTIONS(1765), - [sym_primitive_type] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [anon_sym___try] = ACTIONS(1763), - [anon_sym___leave] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_sizeof] = ACTIONS(1763), - [anon_sym___alignof__] = ACTIONS(1763), - [anon_sym___alignof] = ACTIONS(1763), - [anon_sym__alignof] = ACTIONS(1763), - [anon_sym_alignof] = ACTIONS(1763), - [anon_sym__Alignof] = ACTIONS(1763), - [anon_sym_offsetof] = ACTIONS(1763), - [anon_sym__Generic] = ACTIONS(1763), - [anon_sym_asm] = ACTIONS(1763), - [anon_sym___asm__] = ACTIONS(1763), - [anon_sym___asm] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1761), - [anon_sym_L_SQUOTE] = ACTIONS(1761), - [anon_sym_u_SQUOTE] = ACTIONS(1761), - [anon_sym_U_SQUOTE] = ACTIONS(1761), - [anon_sym_u8_SQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_L_DQUOTE] = ACTIONS(1761), - [anon_sym_u_DQUOTE] = ACTIONS(1761), - [anon_sym_U_DQUOTE] = ACTIONS(1761), - [anon_sym_u8_DQUOTE] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [anon_sym_NULL] = ACTIONS(1763), - [anon_sym_nullptr] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - }, - [408] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym___attribute] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [anon_sym__Nonnull] = ACTIONS(1392), + [anon_sym_alignas] = ACTIONS(1392), + [anon_sym__Alignas] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym___try] = ACTIONS(1392), + [anon_sym___leave] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [anon_sym___asm] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1796), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), + [STATE(249)] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym___attribute] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [anon_sym__Nonnull] = ACTIONS(1356), + [anon_sym_alignas] = ACTIONS(1356), + [anon_sym__Alignas] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [anon_sym___asm] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), + [STATE(250)] = { + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___attribute] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [anon_sym__Nonnull] = ACTIONS(1452), + [anon_sym_alignas] = ACTIONS(1452), + [anon_sym__Alignas] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [anon_sym___asm] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [411] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1798), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), + [STATE(251)] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym___attribute] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [anon_sym__Nonnull] = ACTIONS(1400), + [anon_sym_alignas] = ACTIONS(1400), + [anon_sym__Alignas] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym___try] = ACTIONS(1400), + [anon_sym___leave] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [anon_sym___asm] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), + [STATE(252)] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___attribute] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [anon_sym___asm] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [413] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), + [STATE(253)] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___attribute] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [anon_sym___asm] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1802), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), + [STATE(254)] = { + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym___attribute] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [anon_sym__Nonnull] = ACTIONS(1412), + [anon_sym_alignas] = ACTIONS(1412), + [anon_sym__Alignas] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym___try] = ACTIONS(1412), + [anon_sym___leave] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [anon_sym___asm] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1802), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_comment] = ACTIONS(3), + [STATE(255)] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = 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_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), }, - [416] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), + [STATE(256)] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = 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_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_expression] = STATE(896), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_initializer_list] = STATE(686), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1810), + [STATE(257)] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___attribute] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym__Nonnull] = ACTIONS(1396), + [anon_sym_alignas] = ACTIONS(1396), + [anon_sym__Alignas] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [anon_sym___asm] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_string_literal] = STATE(630), - [aux_sym_sized_type_specifier_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym___extension__] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___based] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym___inline] = ACTIONS(1770), - [anon_sym___inline__] = ACTIONS(1770), - [anon_sym___forceinline] = ACTIONS(1770), - [anon_sym_thread_local] = ACTIONS(1770), - [anon_sym___thread] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_constexpr] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym___restrict__] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym__Noreturn] = ACTIONS(1770), - [anon_sym_noreturn] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym_alignas] = ACTIONS(1770), - [anon_sym__Alignas] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1798), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_LT_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_GT_EQ] = ACTIONS(1794), - [anon_sym_AMP_EQ] = ACTIONS(1794), - [anon_sym_CARET_EQ] = ACTIONS(1794), - [anon_sym_PIPE_EQ] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), + [STATE(258)] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___attribute] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym__Nonnull] = ACTIONS(1396), + [anon_sym_alignas] = ACTIONS(1396), + [anon_sym__Alignas] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [anon_sym___asm] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_based_modifier] = STATE(1967), - [sym_ms_call_modifier] = STATE(1266), - [sym__declarator] = STATE(1454), - [sym__abstract_declarator] = STATE(1555), - [sym_parenthesized_declarator] = STATE(1311), - [sym_abstract_parenthesized_declarator] = STATE(1467), - [sym_attributed_declarator] = STATE(1311), - [sym_pointer_declarator] = STATE(1311), - [sym_abstract_pointer_declarator] = STATE(1467), - [sym_function_declarator] = STATE(1311), - [sym_abstract_function_declarator] = STATE(1467), - [sym_array_declarator] = STATE(1311), - [sym_abstract_array_declarator] = STATE(1467), - [sym_compound_statement] = STATE(1957), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_variadic_parameter] = STATE(1603), - [sym_parameter_list] = STATE(1442), - [sym_parameter_declaration] = STATE(1603), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___based] = ACTIONS(1827), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(259)] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym___attribute] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [anon_sym__Nonnull] = ACTIONS(1448), + [anon_sym_alignas] = ACTIONS(1448), + [anon_sym__Alignas] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [anon_sym___asm] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, - [420] = { - [sym_type_qualifier] = STATE(421), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1100), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(260)] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___attribute] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [anon_sym__Nonnull] = ACTIONS(1452), + [anon_sym_alignas] = ACTIONS(1452), + [anon_sym__Alignas] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [anon_sym___asm] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [421] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1104), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(261)] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___attribute] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [anon_sym__Nonnull] = ACTIONS(1452), + [anon_sym_alignas] = ACTIONS(1452), + [anon_sym__Alignas] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [anon_sym___asm] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_type_qualifier] = STATE(427), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1089), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(262)] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___attribute] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [anon_sym__Nonnull] = ACTIONS(1352), + [anon_sym_alignas] = ACTIONS(1352), + [anon_sym__Alignas] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [anon_sym___asm] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1102), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(263)] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym___attribute] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [anon_sym__Nonnull] = ACTIONS(1412), + [anon_sym_alignas] = ACTIONS(1412), + [anon_sym__Alignas] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym___try] = ACTIONS(1412), + [anon_sym___leave] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [anon_sym___asm] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_type_qualifier] = STATE(423), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1103), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(264)] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___attribute] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [anon_sym__Nonnull] = ACTIONS(1416), + [anon_sym_alignas] = ACTIONS(1416), + [anon_sym__Alignas] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym___try] = ACTIONS(1416), + [anon_sym___leave] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [anon_sym___asm] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_type_qualifier] = STATE(428), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1086), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_RBRACK] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(265)] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___attribute] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [anon_sym__Nonnull] = ACTIONS(1368), + [anon_sym_alignas] = ACTIONS(1368), + [anon_sym__Alignas] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [anon_sym___asm] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1106), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(266)] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym___attribute] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [anon_sym__Nonnull] = ACTIONS(1420), + [anon_sym_alignas] = ACTIONS(1420), + [anon_sym__Alignas] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym___try] = ACTIONS(1420), + [anon_sym___leave] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [anon_sym___asm] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1080), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(267)] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym___attribute] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [anon_sym__Nonnull] = ACTIONS(1456), + [anon_sym_alignas] = ACTIONS(1456), + [anon_sym__Alignas] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [anon_sym___asm] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_type_qualifier] = STATE(667), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1092), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(667), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(268)] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___attribute] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [anon_sym___asm] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_type_qualifier] = STATE(426), - [sym_alignas_qualifier] = STATE(703), - [sym_expression] = STATE(1094), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_array_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym___restrict__] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym__Noreturn] = ACTIONS(1843), - [anon_sym_noreturn] = ACTIONS(1843), - [anon_sym__Nonnull] = ACTIONS(1843), - [anon_sym_alignas] = ACTIONS(1845), - [anon_sym__Alignas] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1812), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(269)] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___attribute] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [anon_sym___asm] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_expression] = STATE(1060), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(932), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(932), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym___extension__] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_RBRACK] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_constexpr] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_restrict] = ACTIONS(1714), - [anon_sym___restrict__] = ACTIONS(1714), - [anon_sym__Atomic] = ACTIONS(1714), - [anon_sym__Noreturn] = ACTIONS(1714), - [anon_sym_noreturn] = ACTIONS(1714), - [anon_sym__Nonnull] = ACTIONS(1714), - [anon_sym_alignas] = ACTIONS(1714), - [anon_sym__Alignas] = ACTIONS(1714), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_sizeof] = ACTIONS(1916), - [anon_sym___alignof__] = ACTIONS(1919), - [anon_sym___alignof] = ACTIONS(1919), - [anon_sym__alignof] = ACTIONS(1919), - [anon_sym_alignof] = ACTIONS(1919), - [anon_sym__Alignof] = ACTIONS(1919), - [anon_sym_offsetof] = ACTIONS(1922), - [anon_sym__Generic] = ACTIONS(1925), - [anon_sym_asm] = ACTIONS(1928), - [anon_sym___asm__] = ACTIONS(1928), - [anon_sym___asm] = ACTIONS(1928), - [sym_number_literal] = ACTIONS(1931), - [anon_sym_L_SQUOTE] = ACTIONS(1934), - [anon_sym_u_SQUOTE] = ACTIONS(1934), - [anon_sym_U_SQUOTE] = ACTIONS(1934), - [anon_sym_u8_SQUOTE] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_L_DQUOTE] = ACTIONS(1937), - [anon_sym_u_DQUOTE] = ACTIONS(1937), - [anon_sym_U_DQUOTE] = ACTIONS(1937), - [anon_sym_u8_DQUOTE] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [anon_sym_NULL] = ACTIONS(1943), - [anon_sym_nullptr] = ACTIONS(1943), - [sym_comment] = ACTIONS(3), - }, - [431] = { - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_ms_call_modifier] = STATE(1391), - [sym__abstract_declarator] = STATE(1555), - [sym_abstract_parenthesized_declarator] = STATE(1467), - [sym_abstract_pointer_declarator] = STATE(1467), - [sym_abstract_function_declarator] = STATE(1467), - [sym_abstract_array_declarator] = STATE(1467), - [sym_compound_statement] = STATE(1957), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym_variadic_parameter] = STATE(1603), - [sym_parameter_list] = STATE(1442), - [sym_parameter_declaration] = STATE(1603), - [sym_macro_type_specifier] = STATE(772), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(270)] = { + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym___attribute] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [anon_sym__Nonnull] = ACTIONS(1468), + [anon_sym_alignas] = ACTIONS(1468), + [anon_sym__Alignas] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [anon_sym___asm] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_preproc_def] = STATE(439), - [sym_preproc_function_def] = STATE(439), - [sym_preproc_call] = STATE(439), - [sym_preproc_if_in_field_declaration_list] = STATE(439), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(439), - [sym_preproc_else_in_field_declaration_list] = STATE(1972), - [sym_preproc_elif_in_field_declaration_list] = STATE(1972), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1972), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(439), - [sym_field_declaration] = STATE(439), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(439), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(271)] = { + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym___attribute] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [anon_sym__Nonnull] = ACTIONS(1472), + [anon_sym_alignas] = ACTIONS(1472), + [anon_sym__Alignas] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_else] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [anon_sym___asm] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, - [433] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1782), - [sym_preproc_elif_in_field_declaration_list] = STATE(1782), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1782), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(272)] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym___attribute] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [anon_sym__Nonnull] = ACTIONS(1380), + [anon_sym_alignas] = ACTIONS(1380), + [anon_sym__Alignas] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [anon_sym___asm] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, - [434] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1831), - [sym_preproc_elif_in_field_declaration_list] = STATE(1831), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1831), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(273)] = { + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___attribute] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [anon_sym__Nonnull] = ACTIONS(1416), + [anon_sym_alignas] = ACTIONS(1416), + [anon_sym__Alignas] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym___try] = ACTIONS(1416), + [anon_sym___leave] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [anon_sym___asm] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1829), - [sym_preproc_elif_in_field_declaration_list] = STATE(1829), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1829), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(274)] = { + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym___attribute] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [anon_sym__Nonnull] = ACTIONS(1420), + [anon_sym_alignas] = ACTIONS(1420), + [anon_sym__Alignas] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym___try] = ACTIONS(1420), + [anon_sym___leave] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [anon_sym___asm] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1788), - [sym_preproc_elif_in_field_declaration_list] = STATE(1788), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1788), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(275)] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = 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_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_preproc_def] = STATE(436), - [sym_preproc_function_def] = STATE(436), - [sym_preproc_call] = STATE(436), - [sym_preproc_if_in_field_declaration_list] = STATE(436), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(436), - [sym_preproc_else_in_field_declaration_list] = STATE(1947), - [sym_preproc_elif_in_field_declaration_list] = STATE(1947), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1947), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(436), - [sym_field_declaration] = STATE(436), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(436), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(276)] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = 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_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_preproc_def] = STATE(434), - [sym_preproc_function_def] = STATE(434), - [sym_preproc_call] = STATE(434), - [sym_preproc_if_in_field_declaration_list] = STATE(434), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(434), - [sym_preproc_else_in_field_declaration_list] = STATE(1804), - [sym_preproc_elif_in_field_declaration_list] = STATE(1804), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1804), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(434), - [sym_field_declaration] = STATE(434), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(434), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(277)] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___attribute] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym__Nonnull] = ACTIONS(1396), + [anon_sym_alignas] = ACTIONS(1396), + [anon_sym__Alignas] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [anon_sym___asm] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [439] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1818), - [sym_preproc_elif_in_field_declaration_list] = STATE(1818), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1818), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(278)] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___attribute] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [anon_sym__Nonnull] = ACTIONS(1396), + [anon_sym_alignas] = ACTIONS(1396), + [anon_sym__Alignas] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [anon_sym___asm] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1887), - [sym_preproc_elif_in_field_declaration_list] = STATE(1887), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1887), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [sym_comment] = ACTIONS(3), - }, - [441] = { - [sym_preproc_def] = STATE(433), - [sym_preproc_function_def] = STATE(433), - [sym_preproc_call] = STATE(433), - [sym_preproc_if_in_field_declaration_list] = STATE(433), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(433), - [sym_preproc_else_in_field_declaration_list] = STATE(1891), - [sym_preproc_elif_in_field_declaration_list] = STATE(1891), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1891), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(433), - [sym_field_declaration] = STATE(433), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(433), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [sym_comment] = ACTIONS(3), - }, - [442] = { - [sym_preproc_def] = STATE(444), - [sym_preproc_function_def] = STATE(444), - [sym_preproc_call] = STATE(444), - [sym_preproc_if_in_field_declaration_list] = STATE(444), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), - [sym_preproc_else_in_field_declaration_list] = STATE(2005), - [sym_preproc_elif_in_field_declaration_list] = STATE(2005), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2005), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(279)] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym___attribute] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [anon_sym__Nonnull] = ACTIONS(1424), + [anon_sym_alignas] = ACTIONS(1424), + [anon_sym__Alignas] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [anon_sym___asm] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1907), - [sym_preproc_elif_in_field_declaration_list] = STATE(1907), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1907), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(280)] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym___attribute] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [anon_sym__Nonnull] = ACTIONS(1428), + [anon_sym_alignas] = ACTIONS(1428), + [anon_sym__Alignas] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [anon_sym___asm] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), [sym_comment] = ACTIONS(3), }, - [444] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1777), - [sym_preproc_elif_in_field_declaration_list] = STATE(1777), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1777), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(281)] = { + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym___attribute] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym__Nonnull] = ACTIONS(1432), + [anon_sym_alignas] = ACTIONS(1432), + [anon_sym__Alignas] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [anon_sym___asm] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym_preproc_else_in_field_declaration_list] = STATE(1779), - [sym_preproc_elif_in_field_declaration_list] = STATE(1779), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1779), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(282)] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym___attribute] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [anon_sym__Nonnull] = ACTIONS(1436), + [anon_sym_alignas] = ACTIONS(1436), + [anon_sym__Alignas] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [anon_sym___asm] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_preproc_def] = STATE(440), - [sym_preproc_function_def] = STATE(440), - [sym_preproc_call] = STATE(440), - [sym_preproc_if_in_field_declaration_list] = STATE(440), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(440), - [sym_preproc_else_in_field_declaration_list] = STATE(1980), - [sym_preproc_elif_in_field_declaration_list] = STATE(1980), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1980), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(440), - [sym_field_declaration] = STATE(440), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(440), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(283)] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym___attribute] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [anon_sym__Nonnull] = ACTIONS(1440), + [anon_sym_alignas] = ACTIONS(1440), + [anon_sym__Alignas] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [anon_sym___asm] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, - [447] = { - [sym_expression] = STATE(1025), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(1626), - [sym_initializer_pair] = STATE(1626), - [sym_subscript_designator] = STATE(1456), - [sym_subscript_range_designator] = STATE(1456), - [sym_field_designator] = STATE(1456), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_initializer_pair_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(1996), - [anon_sym_COMMA] = ACTIONS(1998), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(284)] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym___attribute] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [anon_sym__Nonnull] = ACTIONS(1444), + [anon_sym_alignas] = ACTIONS(1444), + [anon_sym__Alignas] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [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(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [anon_sym___asm] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, - [448] = { - [sym_preproc_def] = STATE(435), - [sym_preproc_function_def] = STATE(435), - [sym_preproc_call] = STATE(435), - [sym_preproc_if_in_field_declaration_list] = STATE(435), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(435), - [sym_preproc_else_in_field_declaration_list] = STATE(1993), - [sym_preproc_elif_in_field_declaration_list] = STATE(1993), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1993), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(435), - [sym_field_declaration] = STATE(435), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(435), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1960), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1964), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(285)] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym___attribute] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [anon_sym__Nonnull] = ACTIONS(1448), + [anon_sym_alignas] = ACTIONS(1448), + [anon_sym__Alignas] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [anon_sym___asm] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, - [449] = { - [sym_expression] = STATE(1045), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(1688), - [sym_initializer_pair] = STATE(1688), - [sym_subscript_designator] = STATE(1456), - [sym_subscript_range_designator] = STATE(1456), - [sym_field_designator] = STATE(1456), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_initializer_pair_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(286)] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___attribute] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [anon_sym__Nonnull] = ACTIONS(1452), + [anon_sym_alignas] = ACTIONS(1452), + [anon_sym__Alignas] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [anon_sym___asm] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym_expression] = STATE(1045), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(1688), - [sym_initializer_pair] = STATE(1688), - [sym_subscript_designator] = STATE(1456), - [sym_subscript_range_designator] = STATE(1456), - [sym_field_designator] = STATE(1456), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_initializer_pair_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(287)] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___attribute] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [anon_sym__Nonnull] = ACTIONS(1452), + [anon_sym_alignas] = ACTIONS(1452), + [anon_sym__Alignas] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [anon_sym___asm] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [451] = { - [sym_expression] = STATE(1045), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(1688), - [sym_initializer_pair] = STATE(1688), - [sym_subscript_designator] = STATE(1456), - [sym_subscript_range_designator] = STATE(1456), - [sym_field_designator] = STATE(1456), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [aux_sym_initializer_pair_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [anon_sym_DOT] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(288)] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym___attribute] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [anon_sym__Nonnull] = ACTIONS(1460), + [anon_sym_alignas] = ACTIONS(1460), + [anon_sym__Alignas] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_else] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [anon_sym___asm] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [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(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_preproc_def] = STATE(452), - [sym_preproc_function_def] = STATE(452), - [sym_preproc_call] = STATE(452), - [sym_preproc_if_in_field_declaration_list] = STATE(452), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(452), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1286), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(452), - [sym_field_declaration] = STATE(452), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(2012), - [aux_sym_preproc_def_token1] = ACTIONS(2015), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_if_token2] = ACTIONS(2021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2023), - [aux_sym_preproc_else_token1] = ACTIONS(2021), - [aux_sym_preproc_elif_token1] = ACTIONS(2021), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2021), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2021), - [sym_preproc_directive] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym___attribute] = ACTIONS(2035), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2041), - [anon_sym_signed] = ACTIONS(2044), - [anon_sym_unsigned] = ACTIONS(2044), - [anon_sym_long] = ACTIONS(2044), - [anon_sym_short] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_auto] = ACTIONS(2032), - [anon_sym_register] = ACTIONS(2032), - [anon_sym_inline] = ACTIONS(2032), - [anon_sym___inline] = ACTIONS(2032), - [anon_sym___inline__] = ACTIONS(2032), - [anon_sym___forceinline] = ACTIONS(2032), - [anon_sym_thread_local] = ACTIONS(2032), - [anon_sym___thread] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_constexpr] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2029), - [anon_sym_restrict] = ACTIONS(2029), - [anon_sym___restrict__] = ACTIONS(2029), - [anon_sym__Atomic] = ACTIONS(2029), - [anon_sym__Noreturn] = ACTIONS(2029), - [anon_sym_noreturn] = ACTIONS(2029), - [anon_sym__Nonnull] = ACTIONS(2029), - [anon_sym_alignas] = ACTIONS(2047), - [anon_sym__Alignas] = ACTIONS(2047), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - }, - [453] = { - [sym_preproc_def] = STATE(454), - [sym_preproc_function_def] = STATE(454), - [sym_preproc_call] = STATE(454), - [sym_preproc_if_in_field_declaration_list] = STATE(454), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(454), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1284), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(454), - [sym_field_declaration] = STATE(454), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(454), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(2062), - [aux_sym_preproc_if_token1] = ACTIONS(2064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2066), - [sym_preproc_directive] = ACTIONS(2068), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(289)] = { + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym___attribute] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [anon_sym__Nonnull] = ACTIONS(1404), + [anon_sym_alignas] = ACTIONS(1404), + [anon_sym__Alignas] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym___try] = ACTIONS(1404), + [anon_sym___leave] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [anon_sym___asm] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym_preproc_def] = STATE(456), - [sym_preproc_function_def] = STATE(456), - [sym_preproc_call] = STATE(456), - [sym_preproc_if_in_field_declaration_list] = STATE(456), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(456), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1284), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(456), - [sym_field_declaration] = STATE(456), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(456), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(2062), - [aux_sym_preproc_if_token1] = ACTIONS(2064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2066), - [sym_preproc_directive] = ACTIONS(2068), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(290)] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___attribute] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [anon_sym__Nonnull] = ACTIONS(1352), + [anon_sym_alignas] = ACTIONS(1352), + [anon_sym__Alignas] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [anon_sym___asm] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym_preproc_def] = STATE(457), - [sym_preproc_function_def] = STATE(457), - [sym_preproc_call] = STATE(457), - [sym_preproc_if_in_field_declaration_list] = STATE(457), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(457), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1283), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(457), - [sym_field_declaration] = STATE(457), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(2074), - [aux_sym_preproc_if_token1] = ACTIONS(2076), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), - [sym_preproc_directive] = ACTIONS(2082), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(291)] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym___attribute] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [anon_sym__Nonnull] = ACTIONS(1432), + [anon_sym_alignas] = ACTIONS(1432), + [anon_sym__Alignas] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [anon_sym___asm] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, - [456] = { - [sym_preproc_def] = STATE(456), - [sym_preproc_function_def] = STATE(456), - [sym_preproc_call] = STATE(456), - [sym_preproc_if_in_field_declaration_list] = STATE(456), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(456), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1284), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(456), - [sym_field_declaration] = STATE(456), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(456), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(2012), - [aux_sym_preproc_def_token1] = ACTIONS(2084), - [aux_sym_preproc_if_token1] = ACTIONS(2087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2090), - [sym_preproc_directive] = ACTIONS(2093), - [anon_sym___extension__] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym___attribute] = ACTIONS(2035), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_signed] = ACTIONS(2044), - [anon_sym_unsigned] = ACTIONS(2044), - [anon_sym_long] = ACTIONS(2044), - [anon_sym_short] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_auto] = ACTIONS(2032), - [anon_sym_register] = ACTIONS(2032), - [anon_sym_inline] = ACTIONS(2032), - [anon_sym___inline] = ACTIONS(2032), - [anon_sym___inline__] = ACTIONS(2032), - [anon_sym___forceinline] = ACTIONS(2032), - [anon_sym_thread_local] = ACTIONS(2032), - [anon_sym___thread] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_constexpr] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2029), - [anon_sym_restrict] = ACTIONS(2029), - [anon_sym___restrict__] = ACTIONS(2029), - [anon_sym__Atomic] = ACTIONS(2029), - [anon_sym__Noreturn] = ACTIONS(2029), - [anon_sym_noreturn] = ACTIONS(2029), - [anon_sym__Nonnull] = ACTIONS(2029), - [anon_sym_alignas] = ACTIONS(2047), - [anon_sym__Alignas] = ACTIONS(2047), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - }, - [457] = { - [sym_preproc_def] = STATE(457), - [sym_preproc_function_def] = STATE(457), - [sym_preproc_call] = STATE(457), - [sym_preproc_if_in_field_declaration_list] = STATE(457), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(457), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1283), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(457), - [sym_field_declaration] = STATE(457), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(2012), - [aux_sym_preproc_def_token1] = ACTIONS(2098), - [aux_sym_preproc_if_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token2] = ACTIONS(2021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), - [sym_preproc_directive] = ACTIONS(2107), - [anon_sym___extension__] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym___attribute] = ACTIONS(2035), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2041), - [anon_sym_signed] = ACTIONS(2044), - [anon_sym_unsigned] = ACTIONS(2044), - [anon_sym_long] = ACTIONS(2044), - [anon_sym_short] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_auto] = ACTIONS(2032), - [anon_sym_register] = ACTIONS(2032), - [anon_sym_inline] = ACTIONS(2032), - [anon_sym___inline] = ACTIONS(2032), - [anon_sym___inline__] = ACTIONS(2032), - [anon_sym___forceinline] = ACTIONS(2032), - [anon_sym_thread_local] = ACTIONS(2032), - [anon_sym___thread] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_constexpr] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2029), - [anon_sym_restrict] = ACTIONS(2029), - [anon_sym___restrict__] = ACTIONS(2029), - [anon_sym__Atomic] = ACTIONS(2029), - [anon_sym__Noreturn] = ACTIONS(2029), - [anon_sym_noreturn] = ACTIONS(2029), - [anon_sym__Nonnull] = ACTIONS(2029), - [anon_sym_alignas] = ACTIONS(2047), - [anon_sym__Alignas] = ACTIONS(2047), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - }, - [458] = { - [sym_preproc_def] = STATE(455), - [sym_preproc_function_def] = STATE(455), - [sym_preproc_call] = STATE(455), - [sym_preproc_if_in_field_declaration_list] = STATE(455), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(455), - [sym__declaration_modifiers] = STATE(710), - [sym__declaration_specifiers] = STATE(1283), - [sym_attribute_specifier] = STATE(710), - [sym_attribute_declaration] = STATE(710), - [sym_ms_declspec_modifier] = STATE(710), - [sym_storage_class_specifier] = STATE(710), - [sym_type_qualifier] = STATE(710), - [sym_alignas_qualifier] = STATE(720), - [sym_type_specifier] = STATE(727), - [sym_sized_type_specifier] = STATE(772), - [sym_enum_specifier] = STATE(772), - [sym_struct_specifier] = STATE(772), - [sym_union_specifier] = STATE(772), - [sym__field_declaration_list_item] = STATE(455), - [sym_field_declaration] = STATE(455), - [sym_macro_type_specifier] = STATE(772), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(455), - [aux_sym__declaration_specifiers_repeat1] = STATE(710), - [aux_sym_sized_type_specifier_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_def_token1] = ACTIONS(2074), - [aux_sym_preproc_if_token1] = ACTIONS(2076), - [aux_sym_preproc_if_token2] = ACTIONS(2110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), - [sym_preproc_directive] = ACTIONS(2082), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [anon_sym__Nonnull] = ACTIONS(49), - [anon_sym_alignas] = ACTIONS(51), - [anon_sym__Alignas] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_struct] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), + [STATE(292)] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym___attribute] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [anon_sym__Nonnull] = ACTIONS(1460), + [anon_sym_alignas] = ACTIONS(1460), + [anon_sym__Alignas] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_else] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [anon_sym___asm] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [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(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_compound_statement] = STATE(1669), - [sym_expression] = STATE(1024), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(293)] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym___attribute] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [anon_sym__Nonnull] = ACTIONS(1404), + [anon_sym_alignas] = ACTIONS(1404), + [anon_sym__Alignas] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym___try] = ACTIONS(1404), + [anon_sym___leave] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [anon_sym___asm] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, - [460] = { - [sym_compound_statement] = STATE(2002), - [sym_expression] = STATE(1053), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(2002), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(294)] = { + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym___attribute] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [anon_sym__Nonnull] = ACTIONS(1456), + [anon_sym_alignas] = ACTIONS(1456), + [anon_sym__Alignas] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [anon_sym___asm] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, - [461] = { - [sym_compound_statement] = STATE(1884), - [sym_expression] = STATE(1072), - [sym__string] = STATE(693), - [sym_comma_expression] = STATE(1884), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(295)] = { + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___attribute] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [anon_sym___asm] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [462] = { - [sym_compound_statement] = STATE(1658), - [sym_expression] = STATE(1026), - [sym__string] = STATE(693), - [sym_conditional_expression] = STATE(693), - [sym_assignment_expression] = STATE(693), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(693), - [sym_binary_expression] = STATE(693), - [sym_update_expression] = STATE(693), - [sym_cast_expression] = STATE(693), - [sym_sizeof_expression] = STATE(693), - [sym_alignof_expression] = STATE(693), - [sym_offsetof_expression] = STATE(693), - [sym_generic_expression] = STATE(693), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(693), - [sym_extension_expression] = STATE(693), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(693), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(693), - [sym_concatenated_string] = STATE(693), - [sym_string_literal] = STATE(673), - [sym_null] = STATE(693), - [sym_identifier] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_sizeof] = ACTIONS(85), - [anon_sym___alignof__] = ACTIONS(87), - [anon_sym___alignof] = ACTIONS(87), - [anon_sym__alignof] = ACTIONS(87), - [anon_sym_alignof] = ACTIONS(87), - [anon_sym__Alignof] = ACTIONS(87), - [anon_sym_offsetof] = ACTIONS(89), - [anon_sym__Generic] = ACTIONS(91), - [anon_sym_asm] = ACTIONS(93), - [anon_sym___asm__] = ACTIONS(93), - [anon_sym___asm] = ACTIONS(93), - [sym_number_literal] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(97), - [anon_sym_u_SQUOTE] = ACTIONS(97), - [anon_sym_U_SQUOTE] = ACTIONS(97), - [anon_sym_u8_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(97), - [anon_sym_L_DQUOTE] = ACTIONS(99), - [anon_sym_u_DQUOTE] = ACTIONS(99), - [anon_sym_U_DQUOTE] = ACTIONS(99), - [anon_sym_u8_DQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [STATE(296)] = { + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___attribute] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [anon_sym___asm] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 24, + [STATE(297)] = { + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym___attribute] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [anon_sym__Nonnull] = ACTIONS(1376), + [anon_sym_alignas] = ACTIONS(1376), + [anon_sym__Alignas] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [anon_sym___asm] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + }, + [STATE(298)] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym___attribute] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = 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_alignas] = ACTIONS(1384), + [anon_sym__Alignas] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym___try] = ACTIONS(1384), + [anon_sym___leave] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [anon_sym___asm] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [STATE(299)] = { + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym___attribute] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [anon_sym__Nonnull] = ACTIONS(1468), + [anon_sym_alignas] = ACTIONS(1468), + [anon_sym__Alignas] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [anon_sym___asm] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), + [sym_comment] = ACTIONS(3), + }, + [STATE(300)] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___attribute] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [anon_sym__Nonnull] = ACTIONS(1352), + [anon_sym_alignas] = ACTIONS(1352), + [anon_sym__Alignas] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [anon_sym___asm] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + }, + [STATE(301)] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym___attribute] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [anon_sym__Nonnull] = ACTIONS(1472), + [anon_sym_alignas] = ACTIONS(1472), + [anon_sym__Alignas] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_else] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [anon_sym___asm] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [STATE(302)] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = 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_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [STATE(303)] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___attribute] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = 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_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [anon_sym__Nonnull] = ACTIONS(1360), + [anon_sym_alignas] = ACTIONS(1360), + [anon_sym__Alignas] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [anon_sym___asm] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [STATE(304)] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym___attribute] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [anon_sym__Nonnull] = ACTIONS(1440), + [anon_sym_alignas] = ACTIONS(1440), + [anon_sym__Alignas] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [anon_sym___asm] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [STATE(305)] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym___attribute] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [anon_sym__Nonnull] = ACTIONS(1380), + [anon_sym_alignas] = ACTIONS(1380), + [anon_sym__Alignas] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [anon_sym___asm] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + }, + [STATE(306)] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym___attribute] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [anon_sym__Nonnull] = ACTIONS(1356), + [anon_sym_alignas] = ACTIONS(1356), + [anon_sym__Alignas] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [anon_sym___asm] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + }, + [STATE(307)] = { + [sym_identifier] = ACTIONS(1548), + [aux_sym_preproc_include_token1] = ACTIONS(1548), + [aux_sym_preproc_def_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), + [sym_preproc_directive] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_typedef] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym___attribute__] = ACTIONS(1548), + [anon_sym___attribute] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), + [anon_sym___declspec] = ACTIONS(1548), + [anon_sym___cdecl] = ACTIONS(1548), + [anon_sym___clrcall] = ACTIONS(1548), + [anon_sym___stdcall] = ACTIONS(1548), + [anon_sym___fastcall] = ACTIONS(1548), + [anon_sym___thiscall] = ACTIONS(1548), + [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_signed] = ACTIONS(1548), + [anon_sym_unsigned] = ACTIONS(1548), + [anon_sym_long] = ACTIONS(1548), + [anon_sym_short] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_auto] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_inline] = ACTIONS(1548), + [anon_sym___inline] = ACTIONS(1548), + [anon_sym___inline__] = ACTIONS(1548), + [anon_sym___forceinline] = ACTIONS(1548), + [anon_sym_thread_local] = ACTIONS(1548), + [anon_sym___thread] = ACTIONS(1548), + [anon_sym_constexpr] = ACTIONS(1548), + [anon_sym_volatile] = ACTIONS(1548), + [anon_sym_restrict] = ACTIONS(1548), + [anon_sym___restrict__] = ACTIONS(1548), + [anon_sym__Atomic] = ACTIONS(1548), + [anon_sym__Noreturn] = ACTIONS(1548), + [anon_sym_noreturn] = ACTIONS(1548), + [anon_sym__Nonnull] = ACTIONS(1548), + [anon_sym_alignas] = ACTIONS(1548), + [anon_sym__Alignas] = ACTIONS(1548), + [sym_primitive_type] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_goto] = ACTIONS(1548), + [anon_sym___try] = ACTIONS(1548), + [anon_sym___leave] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(1548), + [anon_sym___alignof] = ACTIONS(1548), + [anon_sym__alignof] = ACTIONS(1548), + [anon_sym_alignof] = ACTIONS(1548), + [anon_sym__Alignof] = ACTIONS(1548), + [anon_sym_offsetof] = ACTIONS(1548), + [anon_sym__Generic] = ACTIONS(1548), + [anon_sym_asm] = ACTIONS(1548), + [anon_sym___asm__] = ACTIONS(1548), + [anon_sym___asm] = ACTIONS(1548), + [sym_number_literal] = ACTIONS(1551), + [anon_sym_L_SQUOTE] = ACTIONS(1551), + [anon_sym_u_SQUOTE] = ACTIONS(1551), + [anon_sym_U_SQUOTE] = ACTIONS(1551), + [anon_sym_u8_SQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_L_DQUOTE] = ACTIONS(1551), + [anon_sym_u_DQUOTE] = ACTIONS(1551), + [anon_sym_U_DQUOTE] = ACTIONS(1551), + [anon_sym_u8_DQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [anon_sym_NULL] = ACTIONS(1548), + [anon_sym_nullptr] = ACTIONS(1548), + [sym_comment] = ACTIONS(3), + }, + [STATE(308)] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym___attribute] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [anon_sym__Nonnull] = ACTIONS(1492), + [anon_sym_alignas] = ACTIONS(1492), + [anon_sym__Alignas] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [anon_sym___asm] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + }, + [STATE(309)] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym___attribute] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [anon_sym__Nonnull] = ACTIONS(1496), + [anon_sym_alignas] = ACTIONS(1496), + [anon_sym__Alignas] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [anon_sym___asm] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + }, + [STATE(310)] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___attribute] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [anon_sym__Nonnull] = ACTIONS(1500), + [anon_sym_alignas] = ACTIONS(1500), + [anon_sym__Alignas] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [anon_sym___asm] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [STATE(311)] = { + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym___attribute] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [anon_sym__Nonnull] = ACTIONS(1504), + [anon_sym_alignas] = ACTIONS(1504), + [anon_sym__Alignas] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [anon_sym___asm] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), + [sym_comment] = ACTIONS(3), + }, + [STATE(312)] = { + [sym_identifier] = ACTIONS(1554), + [aux_sym_preproc_include_token1] = ACTIONS(1554), + [aux_sym_preproc_def_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token2] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1554), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1554), + [anon_sym_typedef] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym___attribute__] = ACTIONS(1554), + [anon_sym___attribute] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), + [anon_sym___declspec] = ACTIONS(1554), + [anon_sym___cdecl] = ACTIONS(1554), + [anon_sym___clrcall] = ACTIONS(1554), + [anon_sym___stdcall] = ACTIONS(1554), + [anon_sym___fastcall] = ACTIONS(1554), + [anon_sym___thiscall] = ACTIONS(1554), + [anon_sym___vectorcall] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_signed] = ACTIONS(1554), + [anon_sym_unsigned] = ACTIONS(1554), + [anon_sym_long] = ACTIONS(1554), + [anon_sym_short] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_auto] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_inline] = ACTIONS(1554), + [anon_sym___inline] = ACTIONS(1554), + [anon_sym___inline__] = ACTIONS(1554), + [anon_sym___forceinline] = ACTIONS(1554), + [anon_sym_thread_local] = ACTIONS(1554), + [anon_sym___thread] = ACTIONS(1554), + [anon_sym_constexpr] = ACTIONS(1554), + [anon_sym_volatile] = ACTIONS(1554), + [anon_sym_restrict] = ACTIONS(1554), + [anon_sym___restrict__] = ACTIONS(1554), + [anon_sym__Atomic] = ACTIONS(1554), + [anon_sym__Noreturn] = ACTIONS(1554), + [anon_sym_noreturn] = ACTIONS(1554), + [anon_sym__Nonnull] = ACTIONS(1554), + [anon_sym_alignas] = ACTIONS(1554), + [anon_sym__Alignas] = ACTIONS(1554), + [sym_primitive_type] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_goto] = ACTIONS(1554), + [anon_sym___try] = ACTIONS(1554), + [anon_sym___leave] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_sizeof] = ACTIONS(1554), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1554), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1554), + [anon_sym___asm__] = ACTIONS(1554), + [anon_sym___asm] = ACTIONS(1554), + [sym_number_literal] = ACTIONS(1556), + [anon_sym_L_SQUOTE] = ACTIONS(1556), + [anon_sym_u_SQUOTE] = ACTIONS(1556), + [anon_sym_U_SQUOTE] = ACTIONS(1556), + [anon_sym_u8_SQUOTE] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_L_DQUOTE] = ACTIONS(1556), + [anon_sym_u_DQUOTE] = ACTIONS(1556), + [anon_sym_U_DQUOTE] = ACTIONS(1556), + [anon_sym_u8_DQUOTE] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [anon_sym_NULL] = ACTIONS(1554), + [anon_sym_nullptr] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + }, + [STATE(313)] = { + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___attribute] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [anon_sym__Nonnull] = ACTIONS(1508), + [anon_sym_alignas] = ACTIONS(1508), + [anon_sym__Alignas] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [anon_sym___asm] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + }, + [STATE(314)] = { + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token2] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym___attribute] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [anon_sym__Nonnull] = ACTIONS(1558), + [anon_sym_alignas] = ACTIONS(1558), + [anon_sym__Alignas] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym___try] = ACTIONS(1558), + [anon_sym___leave] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(1560), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [anon_sym___asm] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1560), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1560), + [anon_sym_u_DQUOTE] = ACTIONS(1560), + [anon_sym_U_DQUOTE] = ACTIONS(1560), + [anon_sym_u8_DQUOTE] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), + [sym_comment] = ACTIONS(3), + }, + [STATE(315)] = { + [sym_identifier] = ACTIONS(1562), + [aux_sym_preproc_include_token1] = ACTIONS(1562), + [aux_sym_preproc_def_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token2] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1562), + [sym_preproc_directive] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym___extension__] = ACTIONS(1562), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym___attribute__] = ACTIONS(1562), + [anon_sym___attribute] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym___declspec] = ACTIONS(1562), + [anon_sym___cdecl] = ACTIONS(1562), + [anon_sym___clrcall] = ACTIONS(1562), + [anon_sym___stdcall] = ACTIONS(1562), + [anon_sym___fastcall] = ACTIONS(1562), + [anon_sym___thiscall] = ACTIONS(1562), + [anon_sym___vectorcall] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1562), + [anon_sym_unsigned] = ACTIONS(1562), + [anon_sym_long] = ACTIONS(1562), + [anon_sym_short] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_auto] = ACTIONS(1562), + [anon_sym_register] = ACTIONS(1562), + [anon_sym_inline] = ACTIONS(1562), + [anon_sym___inline] = ACTIONS(1562), + [anon_sym___inline__] = ACTIONS(1562), + [anon_sym___forceinline] = ACTIONS(1562), + [anon_sym_thread_local] = ACTIONS(1562), + [anon_sym___thread] = ACTIONS(1562), + [anon_sym_constexpr] = ACTIONS(1562), + [anon_sym_volatile] = ACTIONS(1562), + [anon_sym_restrict] = ACTIONS(1562), + [anon_sym___restrict__] = ACTIONS(1562), + [anon_sym__Atomic] = ACTIONS(1562), + [anon_sym__Noreturn] = ACTIONS(1562), + [anon_sym_noreturn] = ACTIONS(1562), + [anon_sym__Nonnull] = ACTIONS(1562), + [anon_sym_alignas] = ACTIONS(1562), + [anon_sym__Alignas] = ACTIONS(1562), + [sym_primitive_type] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_goto] = ACTIONS(1562), + [anon_sym___try] = ACTIONS(1562), + [anon_sym___leave] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(1562), + [anon_sym___alignof] = ACTIONS(1562), + [anon_sym__alignof] = ACTIONS(1562), + [anon_sym_alignof] = ACTIONS(1562), + [anon_sym__Alignof] = ACTIONS(1562), + [anon_sym_offsetof] = ACTIONS(1562), + [anon_sym__Generic] = ACTIONS(1562), + [anon_sym_asm] = ACTIONS(1562), + [anon_sym___asm__] = ACTIONS(1562), + [anon_sym___asm] = ACTIONS(1562), + [sym_number_literal] = ACTIONS(1564), + [anon_sym_L_SQUOTE] = ACTIONS(1564), + [anon_sym_u_SQUOTE] = ACTIONS(1564), + [anon_sym_U_SQUOTE] = ACTIONS(1564), + [anon_sym_u8_SQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_L_DQUOTE] = ACTIONS(1564), + [anon_sym_u_DQUOTE] = ACTIONS(1564), + [anon_sym_U_DQUOTE] = ACTIONS(1564), + [anon_sym_u8_DQUOTE] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [anon_sym_NULL] = ACTIONS(1562), + [anon_sym_nullptr] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + }, + [STATE(316)] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym___attribute] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [anon_sym__Nonnull] = ACTIONS(1480), + [anon_sym_alignas] = ACTIONS(1480), + [anon_sym__Alignas] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [anon_sym___asm] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [STATE(317)] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym___attribute] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [anon_sym__Nonnull] = ACTIONS(1484), + [anon_sym_alignas] = ACTIONS(1484), + [anon_sym__Alignas] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [anon_sym___asm] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [STATE(318)] = { + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___attribute] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [anon_sym__Nonnull] = ACTIONS(1512), + [anon_sym_alignas] = ACTIONS(1512), + [anon_sym__Alignas] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [anon_sym___asm] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), + [sym_comment] = ACTIONS(3), + }, + [STATE(319)] = { + [sym_identifier] = ACTIONS(1566), + [aux_sym_preproc_include_token1] = ACTIONS(1566), + [aux_sym_preproc_def_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token2] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1566), + [sym_preproc_directive] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym___extension__] = ACTIONS(1566), + [anon_sym_typedef] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym___attribute__] = ACTIONS(1566), + [anon_sym___attribute] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym___declspec] = ACTIONS(1566), + [anon_sym___cdecl] = ACTIONS(1566), + [anon_sym___clrcall] = ACTIONS(1566), + [anon_sym___stdcall] = ACTIONS(1566), + [anon_sym___fastcall] = ACTIONS(1566), + [anon_sym___thiscall] = ACTIONS(1566), + [anon_sym___vectorcall] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1566), + [anon_sym_unsigned] = ACTIONS(1566), + [anon_sym_long] = ACTIONS(1566), + [anon_sym_short] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_auto] = ACTIONS(1566), + [anon_sym_register] = ACTIONS(1566), + [anon_sym_inline] = ACTIONS(1566), + [anon_sym___inline] = ACTIONS(1566), + [anon_sym___inline__] = ACTIONS(1566), + [anon_sym___forceinline] = ACTIONS(1566), + [anon_sym_thread_local] = ACTIONS(1566), + [anon_sym___thread] = ACTIONS(1566), + [anon_sym_constexpr] = ACTIONS(1566), + [anon_sym_volatile] = ACTIONS(1566), + [anon_sym_restrict] = ACTIONS(1566), + [anon_sym___restrict__] = ACTIONS(1566), + [anon_sym__Atomic] = ACTIONS(1566), + [anon_sym__Noreturn] = ACTIONS(1566), + [anon_sym_noreturn] = ACTIONS(1566), + [anon_sym__Nonnull] = ACTIONS(1566), + [anon_sym_alignas] = ACTIONS(1566), + [anon_sym__Alignas] = ACTIONS(1566), + [sym_primitive_type] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_do] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1566), + [anon_sym___try] = ACTIONS(1566), + [anon_sym___leave] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_sizeof] = ACTIONS(1566), + [anon_sym___alignof__] = ACTIONS(1566), + [anon_sym___alignof] = ACTIONS(1566), + [anon_sym__alignof] = ACTIONS(1566), + [anon_sym_alignof] = ACTIONS(1566), + [anon_sym__Alignof] = ACTIONS(1566), + [anon_sym_offsetof] = ACTIONS(1566), + [anon_sym__Generic] = ACTIONS(1566), + [anon_sym_asm] = ACTIONS(1566), + [anon_sym___asm__] = ACTIONS(1566), + [anon_sym___asm] = ACTIONS(1566), + [sym_number_literal] = ACTIONS(1568), + [anon_sym_L_SQUOTE] = ACTIONS(1568), + [anon_sym_u_SQUOTE] = ACTIONS(1568), + [anon_sym_U_SQUOTE] = ACTIONS(1568), + [anon_sym_u8_SQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_L_DQUOTE] = ACTIONS(1568), + [anon_sym_u_DQUOTE] = ACTIONS(1568), + [anon_sym_U_DQUOTE] = ACTIONS(1568), + [anon_sym_u8_DQUOTE] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [sym_true] = ACTIONS(1566), + [sym_false] = ACTIONS(1566), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + }, + [STATE(320)] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym___attribute] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [anon_sym__Nonnull] = ACTIONS(1496), + [anon_sym_alignas] = ACTIONS(1496), + [anon_sym__Alignas] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [anon_sym___asm] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + }, + [STATE(321)] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___attribute] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [anon_sym__Nonnull] = ACTIONS(1500), + [anon_sym_alignas] = ACTIONS(1500), + [anon_sym__Alignas] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [anon_sym___asm] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [STATE(322)] = { + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym___attribute] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [anon_sym__Nonnull] = ACTIONS(1516), + [anon_sym_alignas] = ACTIONS(1516), + [anon_sym__Alignas] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [anon_sym___asm] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), + }, + [STATE(323)] = { + [sym_identifier] = ACTIONS(1629), + [aux_sym_preproc_include_token1] = ACTIONS(1629), + [aux_sym_preproc_def_token1] = ACTIONS(1629), + [aux_sym_preproc_if_token1] = ACTIONS(1629), + [aux_sym_preproc_if_token2] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), + [sym_preproc_directive] = ACTIONS(1629), + [anon_sym_LPAREN2] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym___extension__] = ACTIONS(1629), + [anon_sym_typedef] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym___attribute__] = ACTIONS(1629), + [anon_sym___attribute] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), + [anon_sym___declspec] = ACTIONS(1629), + [anon_sym___cdecl] = ACTIONS(1629), + [anon_sym___clrcall] = ACTIONS(1629), + [anon_sym___stdcall] = ACTIONS(1629), + [anon_sym___fastcall] = ACTIONS(1629), + [anon_sym___thiscall] = ACTIONS(1629), + [anon_sym___vectorcall] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_signed] = ACTIONS(1629), + [anon_sym_unsigned] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_auto] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_inline] = ACTIONS(1629), + [anon_sym___inline] = ACTIONS(1629), + [anon_sym___inline__] = ACTIONS(1629), + [anon_sym___forceinline] = ACTIONS(1629), + [anon_sym_thread_local] = ACTIONS(1629), + [anon_sym___thread] = ACTIONS(1629), + [anon_sym_constexpr] = ACTIONS(1629), + [anon_sym_volatile] = ACTIONS(1629), + [anon_sym_restrict] = ACTIONS(1629), + [anon_sym___restrict__] = ACTIONS(1629), + [anon_sym__Atomic] = ACTIONS(1629), + [anon_sym__Noreturn] = ACTIONS(1629), + [anon_sym_noreturn] = ACTIONS(1629), + [anon_sym__Nonnull] = ACTIONS(1629), + [anon_sym_alignas] = ACTIONS(1629), + [anon_sym__Alignas] = ACTIONS(1629), + [sym_primitive_type] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_goto] = ACTIONS(1629), + [anon_sym___try] = ACTIONS(1629), + [anon_sym___leave] = ACTIONS(1629), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_sizeof] = ACTIONS(1629), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1629), + [anon_sym__Generic] = ACTIONS(1629), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym___asm__] = ACTIONS(1629), + [anon_sym___asm] = ACTIONS(1629), + [sym_number_literal] = ACTIONS(1631), + [anon_sym_L_SQUOTE] = ACTIONS(1631), + [anon_sym_u_SQUOTE] = ACTIONS(1631), + [anon_sym_U_SQUOTE] = ACTIONS(1631), + [anon_sym_u8_SQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [anon_sym_NULL] = ACTIONS(1629), + [anon_sym_nullptr] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + }, + [STATE(324)] = { + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym___attribute] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [anon_sym__Nonnull] = ACTIONS(1520), + [anon_sym_alignas] = ACTIONS(1520), + [anon_sym__Alignas] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [anon_sym___asm] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), + [sym_comment] = ACTIONS(3), + }, + [STATE(325)] = { + [sym_expression] = STATE(928), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(898), + [sym_initializer_list] = STATE(897), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym___attribute__] = ACTIONS(1663), + [anon_sym___attribute] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_EQ] = ACTIONS(1663), + [anon_sym_COLON] = ACTIONS(1657), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_STAR_EQ] = ACTIONS(1657), + [anon_sym_SLASH_EQ] = ACTIONS(1657), + [anon_sym_PERCENT_EQ] = ACTIONS(1657), + [anon_sym_PLUS_EQ] = ACTIONS(1657), + [anon_sym_DASH_EQ] = ACTIONS(1657), + [anon_sym_LT_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_GT_EQ] = ACTIONS(1657), + [anon_sym_AMP_EQ] = ACTIONS(1657), + [anon_sym_CARET_EQ] = ACTIONS(1657), + [anon_sym_PIPE_EQ] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1669), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(1657), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1671), + [anon_sym_nullptr] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + }, + [STATE(326)] = { + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___attribute] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym__Nonnull] = ACTIONS(1524), + [anon_sym_alignas] = ACTIONS(1524), + [anon_sym__Alignas] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [anon_sym___asm] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + }, + [STATE(327)] = { + [sym_identifier] = ACTIONS(1528), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym___attribute] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [anon_sym__Nonnull] = ACTIONS(1528), + [anon_sym_alignas] = ACTIONS(1528), + [anon_sym__Alignas] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym___try] = ACTIONS(1528), + [anon_sym___leave] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [anon_sym___asm] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), + [sym_comment] = ACTIONS(3), + }, + [STATE(328)] = { + [sym_identifier] = ACTIONS(1532), + [aux_sym_preproc_include_token1] = ACTIONS(1532), + [aux_sym_preproc_def_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1532), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym___extension__] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym___attribute__] = ACTIONS(1532), + [anon_sym___attribute] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym___declspec] = ACTIONS(1532), + [anon_sym___cdecl] = ACTIONS(1532), + [anon_sym___clrcall] = ACTIONS(1532), + [anon_sym___stdcall] = ACTIONS(1532), + [anon_sym___fastcall] = ACTIONS(1532), + [anon_sym___thiscall] = ACTIONS(1532), + [anon_sym___vectorcall] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_signed] = ACTIONS(1532), + [anon_sym_unsigned] = ACTIONS(1532), + [anon_sym_long] = ACTIONS(1532), + [anon_sym_short] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_auto] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_inline] = ACTIONS(1532), + [anon_sym___inline] = ACTIONS(1532), + [anon_sym___inline__] = ACTIONS(1532), + [anon_sym___forceinline] = ACTIONS(1532), + [anon_sym_thread_local] = ACTIONS(1532), + [anon_sym___thread] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1532), + [anon_sym_volatile] = ACTIONS(1532), + [anon_sym_restrict] = ACTIONS(1532), + [anon_sym___restrict__] = ACTIONS(1532), + [anon_sym__Atomic] = ACTIONS(1532), + [anon_sym__Noreturn] = ACTIONS(1532), + [anon_sym_noreturn] = ACTIONS(1532), + [anon_sym__Nonnull] = ACTIONS(1532), + [anon_sym_alignas] = ACTIONS(1532), + [anon_sym__Alignas] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_case] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_goto] = ACTIONS(1532), + [anon_sym___try] = ACTIONS(1532), + [anon_sym___leave] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1532), + [anon_sym__Generic] = ACTIONS(1532), + [anon_sym_asm] = ACTIONS(1532), + [anon_sym___asm__] = ACTIONS(1532), + [anon_sym___asm] = ACTIONS(1532), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_L_SQUOTE] = ACTIONS(1534), + [anon_sym_u_SQUOTE] = ACTIONS(1534), + [anon_sym_U_SQUOTE] = ACTIONS(1534), + [anon_sym_u8_SQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1532), + [sym_false] = ACTIONS(1532), + [anon_sym_NULL] = ACTIONS(1532), + [anon_sym_nullptr] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + }, + [STATE(329)] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym___attribute] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [anon_sym__Nonnull] = ACTIONS(1476), + [anon_sym_alignas] = ACTIONS(1476), + [anon_sym__Alignas] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [anon_sym___asm] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [STATE(330)] = { + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym___attribute__] = ACTIONS(1536), + [anon_sym___attribute] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym___declspec] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1536), + [anon_sym_unsigned] = ACTIONS(1536), + [anon_sym_long] = ACTIONS(1536), + [anon_sym_short] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(1536), + [anon_sym___inline] = ACTIONS(1536), + [anon_sym___inline__] = ACTIONS(1536), + [anon_sym___forceinline] = ACTIONS(1536), + [anon_sym_thread_local] = ACTIONS(1536), + [anon_sym___thread] = ACTIONS(1536), + [anon_sym_constexpr] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1536), + [anon_sym_restrict] = ACTIONS(1536), + [anon_sym___restrict__] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1536), + [anon_sym__Noreturn] = ACTIONS(1536), + [anon_sym_noreturn] = ACTIONS(1536), + [anon_sym__Nonnull] = ACTIONS(1536), + [anon_sym_alignas] = ACTIONS(1536), + [anon_sym__Alignas] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1536), + [anon_sym___try] = ACTIONS(1536), + [anon_sym___leave] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1536), + [anon_sym___alignof__] = ACTIONS(1536), + [anon_sym___alignof] = ACTIONS(1536), + [anon_sym__alignof] = ACTIONS(1536), + [anon_sym_alignof] = ACTIONS(1536), + [anon_sym__Alignof] = ACTIONS(1536), + [anon_sym_offsetof] = ACTIONS(1536), + [anon_sym__Generic] = ACTIONS(1536), + [anon_sym_asm] = ACTIONS(1536), + [anon_sym___asm__] = ACTIONS(1536), + [anon_sym___asm] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1538), + [anon_sym_L_SQUOTE] = ACTIONS(1538), + [anon_sym_u_SQUOTE] = ACTIONS(1538), + [anon_sym_U_SQUOTE] = ACTIONS(1538), + [anon_sym_u8_SQUOTE] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_L_DQUOTE] = ACTIONS(1538), + [anon_sym_u_DQUOTE] = ACTIONS(1538), + [anon_sym_U_DQUOTE] = ACTIONS(1538), + [anon_sym_u8_DQUOTE] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [anon_sym_NULL] = ACTIONS(1536), + [anon_sym_nullptr] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + }, + [STATE(331)] = { + [sym_identifier] = ACTIONS(1637), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token2] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), + [sym_preproc_directive] = ACTIONS(1637), + [anon_sym_LPAREN2] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym___extension__] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym___attribute__] = ACTIONS(1637), + [anon_sym___attribute] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1637), + [anon_sym___cdecl] = ACTIONS(1637), + [anon_sym___clrcall] = ACTIONS(1637), + [anon_sym___stdcall] = ACTIONS(1637), + [anon_sym___fastcall] = ACTIONS(1637), + [anon_sym___thiscall] = ACTIONS(1637), + [anon_sym___vectorcall] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_auto] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym___inline] = ACTIONS(1637), + [anon_sym___inline__] = ACTIONS(1637), + [anon_sym___forceinline] = ACTIONS(1637), + [anon_sym_thread_local] = ACTIONS(1637), + [anon_sym___thread] = ACTIONS(1637), + [anon_sym_constexpr] = ACTIONS(1637), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_restrict] = ACTIONS(1637), + [anon_sym___restrict__] = ACTIONS(1637), + [anon_sym__Atomic] = ACTIONS(1637), + [anon_sym__Noreturn] = ACTIONS(1637), + [anon_sym_noreturn] = ACTIONS(1637), + [anon_sym__Nonnull] = ACTIONS(1637), + [anon_sym_alignas] = ACTIONS(1637), + [anon_sym__Alignas] = ACTIONS(1637), + [sym_primitive_type] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_case] = ACTIONS(1637), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_goto] = ACTIONS(1637), + [anon_sym___try] = ACTIONS(1637), + [anon_sym___leave] = ACTIONS(1637), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1637), + [anon_sym___alignof__] = ACTIONS(1637), + [anon_sym___alignof] = ACTIONS(1637), + [anon_sym__alignof] = ACTIONS(1637), + [anon_sym_alignof] = ACTIONS(1637), + [anon_sym__Alignof] = ACTIONS(1637), + [anon_sym_offsetof] = ACTIONS(1637), + [anon_sym__Generic] = ACTIONS(1637), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym___asm__] = ACTIONS(1637), + [anon_sym___asm] = ACTIONS(1637), + [sym_number_literal] = ACTIONS(1639), + [anon_sym_L_SQUOTE] = ACTIONS(1639), + [anon_sym_u_SQUOTE] = ACTIONS(1639), + [anon_sym_U_SQUOTE] = ACTIONS(1639), + [anon_sym_u8_SQUOTE] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_L_DQUOTE] = ACTIONS(1639), + [anon_sym_u_DQUOTE] = ACTIONS(1639), + [anon_sym_U_DQUOTE] = ACTIONS(1639), + [anon_sym_u8_DQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [sym_true] = ACTIONS(1637), + [sym_false] = ACTIONS(1637), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + }, + [STATE(332)] = { + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym___attribute] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [anon_sym__Nonnull] = ACTIONS(1504), + [anon_sym_alignas] = ACTIONS(1504), + [anon_sym__Alignas] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [anon_sym___asm] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), + [sym_comment] = ACTIONS(3), + }, + [STATE(333)] = { + [sym_identifier] = ACTIONS(1641), + [aux_sym_preproc_include_token1] = ACTIONS(1641), + [aux_sym_preproc_def_token1] = ACTIONS(1641), + [aux_sym_preproc_if_token1] = ACTIONS(1641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), + [sym_preproc_directive] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym___extension__] = ACTIONS(1641), + [anon_sym_typedef] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym___attribute__] = ACTIONS(1641), + [anon_sym___attribute] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1643), + [anon_sym___declspec] = ACTIONS(1641), + [anon_sym___cdecl] = ACTIONS(1641), + [anon_sym___clrcall] = ACTIONS(1641), + [anon_sym___stdcall] = ACTIONS(1641), + [anon_sym___fastcall] = ACTIONS(1641), + [anon_sym___thiscall] = ACTIONS(1641), + [anon_sym___vectorcall] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1641), + [anon_sym_unsigned] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_auto] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_inline] = ACTIONS(1641), + [anon_sym___inline] = ACTIONS(1641), + [anon_sym___inline__] = ACTIONS(1641), + [anon_sym___forceinline] = ACTIONS(1641), + [anon_sym_thread_local] = ACTIONS(1641), + [anon_sym___thread] = ACTIONS(1641), + [anon_sym_constexpr] = ACTIONS(1641), + [anon_sym_volatile] = ACTIONS(1641), + [anon_sym_restrict] = ACTIONS(1641), + [anon_sym___restrict__] = ACTIONS(1641), + [anon_sym__Atomic] = ACTIONS(1641), + [anon_sym__Noreturn] = ACTIONS(1641), + [anon_sym_noreturn] = ACTIONS(1641), + [anon_sym__Nonnull] = ACTIONS(1641), + [anon_sym_alignas] = ACTIONS(1641), + [anon_sym__Alignas] = ACTIONS(1641), + [sym_primitive_type] = ACTIONS(1641), + [anon_sym_enum] = ACTIONS(1641), + [anon_sym_struct] = ACTIONS(1641), + [anon_sym_union] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_case] = ACTIONS(1641), + [anon_sym_default] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_goto] = ACTIONS(1641), + [anon_sym___try] = ACTIONS(1641), + [anon_sym___leave] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_sizeof] = ACTIONS(1641), + [anon_sym___alignof__] = ACTIONS(1641), + [anon_sym___alignof] = ACTIONS(1641), + [anon_sym__alignof] = ACTIONS(1641), + [anon_sym_alignof] = ACTIONS(1641), + [anon_sym__Alignof] = ACTIONS(1641), + [anon_sym_offsetof] = ACTIONS(1641), + [anon_sym__Generic] = ACTIONS(1641), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym___asm__] = ACTIONS(1641), + [anon_sym___asm] = ACTIONS(1641), + [sym_number_literal] = ACTIONS(1643), + [anon_sym_L_SQUOTE] = ACTIONS(1643), + [anon_sym_u_SQUOTE] = ACTIONS(1643), + [anon_sym_U_SQUOTE] = ACTIONS(1643), + [anon_sym_u8_SQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_L_DQUOTE] = ACTIONS(1643), + [anon_sym_u_DQUOTE] = ACTIONS(1643), + [anon_sym_U_DQUOTE] = ACTIONS(1643), + [anon_sym_u8_DQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [anon_sym_NULL] = ACTIONS(1641), + [anon_sym_nullptr] = ACTIONS(1641), + [sym_comment] = ACTIONS(3), + }, + [STATE(334)] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___attribute] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [anon_sym__Nonnull] = ACTIONS(1488), + [anon_sym_alignas] = ACTIONS(1488), + [anon_sym__Alignas] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [anon_sym___asm] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + }, + [STATE(335)] = { + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___attribute] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [anon_sym__Nonnull] = ACTIONS(1508), + [anon_sym_alignas] = ACTIONS(1508), + [anon_sym__Alignas] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [anon_sym___asm] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + }, + [STATE(336)] = { + [sym_identifier] = ACTIONS(1629), + [aux_sym_preproc_include_token1] = ACTIONS(1629), + [aux_sym_preproc_def_token1] = ACTIONS(1629), + [aux_sym_preproc_if_token1] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), + [sym_preproc_directive] = ACTIONS(1629), + [anon_sym_LPAREN2] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym___extension__] = ACTIONS(1629), + [anon_sym_typedef] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym___attribute__] = ACTIONS(1629), + [anon_sym___attribute] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), + [anon_sym___declspec] = ACTIONS(1629), + [anon_sym___cdecl] = ACTIONS(1629), + [anon_sym___clrcall] = ACTIONS(1629), + [anon_sym___stdcall] = ACTIONS(1629), + [anon_sym___fastcall] = ACTIONS(1629), + [anon_sym___thiscall] = ACTIONS(1629), + [anon_sym___vectorcall] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_signed] = ACTIONS(1629), + [anon_sym_unsigned] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_auto] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_inline] = ACTIONS(1629), + [anon_sym___inline] = ACTIONS(1629), + [anon_sym___inline__] = ACTIONS(1629), + [anon_sym___forceinline] = ACTIONS(1629), + [anon_sym_thread_local] = ACTIONS(1629), + [anon_sym___thread] = ACTIONS(1629), + [anon_sym_constexpr] = ACTIONS(1629), + [anon_sym_volatile] = ACTIONS(1629), + [anon_sym_restrict] = ACTIONS(1629), + [anon_sym___restrict__] = ACTIONS(1629), + [anon_sym__Atomic] = ACTIONS(1629), + [anon_sym__Noreturn] = ACTIONS(1629), + [anon_sym_noreturn] = ACTIONS(1629), + [anon_sym__Nonnull] = ACTIONS(1629), + [anon_sym_alignas] = ACTIONS(1629), + [anon_sym__Alignas] = ACTIONS(1629), + [sym_primitive_type] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_goto] = ACTIONS(1629), + [anon_sym___try] = ACTIONS(1629), + [anon_sym___leave] = ACTIONS(1629), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_sizeof] = ACTIONS(1629), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1629), + [anon_sym__Generic] = ACTIONS(1629), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym___asm__] = ACTIONS(1629), + [anon_sym___asm] = ACTIONS(1629), + [sym_number_literal] = ACTIONS(1631), + [anon_sym_L_SQUOTE] = ACTIONS(1631), + [anon_sym_u_SQUOTE] = ACTIONS(1631), + [anon_sym_U_SQUOTE] = ACTIONS(1631), + [anon_sym_u8_SQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [anon_sym_NULL] = ACTIONS(1629), + [anon_sym_nullptr] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + }, + [STATE(337)] = { + [sym_identifier] = ACTIONS(1621), + [aux_sym_preproc_include_token1] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1621), + [aux_sym_preproc_if_token2] = ACTIONS(1621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1621), + [sym_preproc_directive] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym___extension__] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1621), + [anon_sym___attribute__] = ACTIONS(1621), + [anon_sym___attribute] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), + [anon_sym___declspec] = ACTIONS(1621), + [anon_sym___cdecl] = ACTIONS(1621), + [anon_sym___clrcall] = ACTIONS(1621), + [anon_sym___stdcall] = ACTIONS(1621), + [anon_sym___fastcall] = ACTIONS(1621), + [anon_sym___thiscall] = ACTIONS(1621), + [anon_sym___vectorcall] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1621), + [anon_sym_unsigned] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_auto] = ACTIONS(1621), + [anon_sym_register] = ACTIONS(1621), + [anon_sym_inline] = ACTIONS(1621), + [anon_sym___inline] = ACTIONS(1621), + [anon_sym___inline__] = ACTIONS(1621), + [anon_sym___forceinline] = ACTIONS(1621), + [anon_sym_thread_local] = ACTIONS(1621), + [anon_sym___thread] = ACTIONS(1621), + [anon_sym_constexpr] = ACTIONS(1621), + [anon_sym_volatile] = ACTIONS(1621), + [anon_sym_restrict] = ACTIONS(1621), + [anon_sym___restrict__] = ACTIONS(1621), + [anon_sym__Atomic] = ACTIONS(1621), + [anon_sym__Noreturn] = ACTIONS(1621), + [anon_sym_noreturn] = ACTIONS(1621), + [anon_sym__Nonnull] = ACTIONS(1621), + [anon_sym_alignas] = ACTIONS(1621), + [anon_sym__Alignas] = ACTIONS(1621), + [sym_primitive_type] = ACTIONS(1621), + [anon_sym_enum] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_case] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_goto] = ACTIONS(1621), + [anon_sym___try] = ACTIONS(1621), + [anon_sym___leave] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1621), + [anon_sym___alignof__] = ACTIONS(1621), + [anon_sym___alignof] = ACTIONS(1621), + [anon_sym__alignof] = ACTIONS(1621), + [anon_sym_alignof] = ACTIONS(1621), + [anon_sym__Alignof] = ACTIONS(1621), + [anon_sym_offsetof] = ACTIONS(1621), + [anon_sym__Generic] = ACTIONS(1621), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym___asm__] = ACTIONS(1621), + [anon_sym___asm] = ACTIONS(1621), + [sym_number_literal] = ACTIONS(1623), + [anon_sym_L_SQUOTE] = ACTIONS(1623), + [anon_sym_u_SQUOTE] = ACTIONS(1623), + [anon_sym_U_SQUOTE] = ACTIONS(1623), + [anon_sym_u8_SQUOTE] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_L_DQUOTE] = ACTIONS(1623), + [anon_sym_u_DQUOTE] = ACTIONS(1623), + [anon_sym_U_DQUOTE] = ACTIONS(1623), + [anon_sym_u8_DQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym_true] = ACTIONS(1621), + [sym_false] = ACTIONS(1621), + [anon_sym_NULL] = ACTIONS(1621), + [anon_sym_nullptr] = ACTIONS(1621), + [sym_comment] = ACTIONS(3), + }, + [STATE(338)] = { + [sym_else_clause] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [anon_sym__Nonnull] = ACTIONS(1340), + [anon_sym_alignas] = ACTIONS(1340), + [anon_sym__Alignas] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [anon_sym___asm] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + }, + [STATE(339)] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___attribute] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [anon_sym__Nonnull] = ACTIONS(1488), + [anon_sym_alignas] = ACTIONS(1488), + [anon_sym__Alignas] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [anon_sym___asm] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + }, + [STATE(340)] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym___attribute] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [anon_sym__Nonnull] = ACTIONS(1492), + [anon_sym_alignas] = ACTIONS(1492), + [anon_sym__Alignas] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [anon_sym___asm] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + }, + [STATE(341)] = { + [sym_identifier] = ACTIONS(1621), + [aux_sym_preproc_include_token1] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1621), + [sym_preproc_directive] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym___extension__] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1621), + [anon_sym___attribute__] = ACTIONS(1621), + [anon_sym___attribute] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), + [anon_sym___declspec] = ACTIONS(1621), + [anon_sym___cdecl] = ACTIONS(1621), + [anon_sym___clrcall] = ACTIONS(1621), + [anon_sym___stdcall] = ACTIONS(1621), + [anon_sym___fastcall] = ACTIONS(1621), + [anon_sym___thiscall] = ACTIONS(1621), + [anon_sym___vectorcall] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1621), + [anon_sym_unsigned] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_auto] = ACTIONS(1621), + [anon_sym_register] = ACTIONS(1621), + [anon_sym_inline] = ACTIONS(1621), + [anon_sym___inline] = ACTIONS(1621), + [anon_sym___inline__] = ACTIONS(1621), + [anon_sym___forceinline] = ACTIONS(1621), + [anon_sym_thread_local] = ACTIONS(1621), + [anon_sym___thread] = ACTIONS(1621), + [anon_sym_constexpr] = ACTIONS(1621), + [anon_sym_volatile] = ACTIONS(1621), + [anon_sym_restrict] = ACTIONS(1621), + [anon_sym___restrict__] = ACTIONS(1621), + [anon_sym__Atomic] = ACTIONS(1621), + [anon_sym__Noreturn] = ACTIONS(1621), + [anon_sym_noreturn] = ACTIONS(1621), + [anon_sym__Nonnull] = ACTIONS(1621), + [anon_sym_alignas] = ACTIONS(1621), + [anon_sym__Alignas] = ACTIONS(1621), + [sym_primitive_type] = ACTIONS(1621), + [anon_sym_enum] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_case] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_goto] = ACTIONS(1621), + [anon_sym___try] = ACTIONS(1621), + [anon_sym___leave] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1621), + [anon_sym___alignof__] = ACTIONS(1621), + [anon_sym___alignof] = ACTIONS(1621), + [anon_sym__alignof] = ACTIONS(1621), + [anon_sym_alignof] = ACTIONS(1621), + [anon_sym__Alignof] = ACTIONS(1621), + [anon_sym_offsetof] = ACTIONS(1621), + [anon_sym__Generic] = ACTIONS(1621), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym___asm__] = ACTIONS(1621), + [anon_sym___asm] = ACTIONS(1621), + [sym_number_literal] = ACTIONS(1623), + [anon_sym_L_SQUOTE] = ACTIONS(1623), + [anon_sym_u_SQUOTE] = ACTIONS(1623), + [anon_sym_U_SQUOTE] = ACTIONS(1623), + [anon_sym_u8_SQUOTE] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_L_DQUOTE] = ACTIONS(1623), + [anon_sym_u_DQUOTE] = ACTIONS(1623), + [anon_sym_U_DQUOTE] = ACTIONS(1623), + [anon_sym_u8_DQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym_true] = ACTIONS(1621), + [sym_false] = ACTIONS(1621), + [anon_sym_NULL] = ACTIONS(1621), + [anon_sym_nullptr] = ACTIONS(1621), + [sym_comment] = ACTIONS(3), + }, + [STATE(342)] = { + [sym_identifier] = ACTIONS(1554), + [aux_sym_preproc_include_token1] = ACTIONS(1554), + [aux_sym_preproc_def_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1554), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1554), + [anon_sym_typedef] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym___attribute__] = ACTIONS(1554), + [anon_sym___attribute] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), + [anon_sym___declspec] = ACTIONS(1554), + [anon_sym___cdecl] = ACTIONS(1554), + [anon_sym___clrcall] = ACTIONS(1554), + [anon_sym___stdcall] = ACTIONS(1554), + [anon_sym___fastcall] = ACTIONS(1554), + [anon_sym___thiscall] = ACTIONS(1554), + [anon_sym___vectorcall] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_signed] = ACTIONS(1554), + [anon_sym_unsigned] = ACTIONS(1554), + [anon_sym_long] = ACTIONS(1554), + [anon_sym_short] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_auto] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_inline] = ACTIONS(1554), + [anon_sym___inline] = ACTIONS(1554), + [anon_sym___inline__] = ACTIONS(1554), + [anon_sym___forceinline] = ACTIONS(1554), + [anon_sym_thread_local] = ACTIONS(1554), + [anon_sym___thread] = ACTIONS(1554), + [anon_sym_constexpr] = ACTIONS(1554), + [anon_sym_volatile] = ACTIONS(1554), + [anon_sym_restrict] = ACTIONS(1554), + [anon_sym___restrict__] = ACTIONS(1554), + [anon_sym__Atomic] = ACTIONS(1554), + [anon_sym__Noreturn] = ACTIONS(1554), + [anon_sym_noreturn] = ACTIONS(1554), + [anon_sym__Nonnull] = ACTIONS(1554), + [anon_sym_alignas] = ACTIONS(1554), + [anon_sym__Alignas] = ACTIONS(1554), + [sym_primitive_type] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_goto] = ACTIONS(1554), + [anon_sym___try] = ACTIONS(1554), + [anon_sym___leave] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_sizeof] = ACTIONS(1554), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1554), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1554), + [anon_sym___asm__] = ACTIONS(1554), + [anon_sym___asm] = ACTIONS(1554), + [sym_number_literal] = ACTIONS(1556), + [anon_sym_L_SQUOTE] = ACTIONS(1556), + [anon_sym_u_SQUOTE] = ACTIONS(1556), + [anon_sym_U_SQUOTE] = ACTIONS(1556), + [anon_sym_u8_SQUOTE] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_L_DQUOTE] = ACTIONS(1556), + [anon_sym_u_DQUOTE] = ACTIONS(1556), + [anon_sym_U_DQUOTE] = ACTIONS(1556), + [anon_sym_u8_DQUOTE] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [anon_sym_NULL] = ACTIONS(1554), + [anon_sym_nullptr] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + }, + [STATE(343)] = { + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym___attribute] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [anon_sym__Nonnull] = ACTIONS(1558), + [anon_sym_alignas] = ACTIONS(1558), + [anon_sym__Alignas] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym___try] = ACTIONS(1558), + [anon_sym___leave] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(1560), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [anon_sym___asm] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1560), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1560), + [anon_sym_u_DQUOTE] = ACTIONS(1560), + [anon_sym_U_DQUOTE] = ACTIONS(1560), + [anon_sym_u8_DQUOTE] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), + [sym_comment] = ACTIONS(3), + }, + [STATE(344)] = { + [sym_identifier] = ACTIONS(1562), + [aux_sym_preproc_include_token1] = ACTIONS(1562), + [aux_sym_preproc_def_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1562), + [sym_preproc_directive] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym___extension__] = ACTIONS(1562), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym___attribute__] = ACTIONS(1562), + [anon_sym___attribute] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym___declspec] = ACTIONS(1562), + [anon_sym___cdecl] = ACTIONS(1562), + [anon_sym___clrcall] = ACTIONS(1562), + [anon_sym___stdcall] = ACTIONS(1562), + [anon_sym___fastcall] = ACTIONS(1562), + [anon_sym___thiscall] = ACTIONS(1562), + [anon_sym___vectorcall] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1562), + [anon_sym_unsigned] = ACTIONS(1562), + [anon_sym_long] = ACTIONS(1562), + [anon_sym_short] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_auto] = ACTIONS(1562), + [anon_sym_register] = ACTIONS(1562), + [anon_sym_inline] = ACTIONS(1562), + [anon_sym___inline] = ACTIONS(1562), + [anon_sym___inline__] = ACTIONS(1562), + [anon_sym___forceinline] = ACTIONS(1562), + [anon_sym_thread_local] = ACTIONS(1562), + [anon_sym___thread] = ACTIONS(1562), + [anon_sym_constexpr] = ACTIONS(1562), + [anon_sym_volatile] = ACTIONS(1562), + [anon_sym_restrict] = ACTIONS(1562), + [anon_sym___restrict__] = ACTIONS(1562), + [anon_sym__Atomic] = ACTIONS(1562), + [anon_sym__Noreturn] = ACTIONS(1562), + [anon_sym_noreturn] = ACTIONS(1562), + [anon_sym__Nonnull] = ACTIONS(1562), + [anon_sym_alignas] = ACTIONS(1562), + [anon_sym__Alignas] = ACTIONS(1562), + [sym_primitive_type] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_goto] = ACTIONS(1562), + [anon_sym___try] = ACTIONS(1562), + [anon_sym___leave] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(1562), + [anon_sym___alignof] = ACTIONS(1562), + [anon_sym__alignof] = ACTIONS(1562), + [anon_sym_alignof] = ACTIONS(1562), + [anon_sym__Alignof] = ACTIONS(1562), + [anon_sym_offsetof] = ACTIONS(1562), + [anon_sym__Generic] = ACTIONS(1562), + [anon_sym_asm] = ACTIONS(1562), + [anon_sym___asm__] = ACTIONS(1562), + [anon_sym___asm] = ACTIONS(1562), + [sym_number_literal] = ACTIONS(1564), + [anon_sym_L_SQUOTE] = ACTIONS(1564), + [anon_sym_u_SQUOTE] = ACTIONS(1564), + [anon_sym_U_SQUOTE] = ACTIONS(1564), + [anon_sym_u8_SQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_L_DQUOTE] = ACTIONS(1564), + [anon_sym_u_DQUOTE] = ACTIONS(1564), + [anon_sym_U_DQUOTE] = ACTIONS(1564), + [anon_sym_u8_DQUOTE] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [anon_sym_NULL] = ACTIONS(1562), + [anon_sym_nullptr] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + }, + [STATE(345)] = { + [sym_identifier] = ACTIONS(1540), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym___extension__] = ACTIONS(1540), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1540), + [anon_sym___attribute] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1542), + [anon_sym___declspec] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_signed] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_inline] = ACTIONS(1540), + [anon_sym___inline] = ACTIONS(1540), + [anon_sym___inline__] = ACTIONS(1540), + [anon_sym___forceinline] = ACTIONS(1540), + [anon_sym_thread_local] = ACTIONS(1540), + [anon_sym___thread] = ACTIONS(1540), + [anon_sym_constexpr] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym___restrict__] = ACTIONS(1540), + [anon_sym__Atomic] = ACTIONS(1540), + [anon_sym__Noreturn] = ACTIONS(1540), + [anon_sym_noreturn] = ACTIONS(1540), + [anon_sym__Nonnull] = ACTIONS(1540), + [anon_sym_alignas] = ACTIONS(1540), + [anon_sym__Alignas] = ACTIONS(1540), + [sym_primitive_type] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym___try] = ACTIONS(1540), + [anon_sym___leave] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_sizeof] = ACTIONS(1540), + [anon_sym___alignof__] = ACTIONS(1540), + [anon_sym___alignof] = ACTIONS(1540), + [anon_sym__alignof] = ACTIONS(1540), + [anon_sym_alignof] = ACTIONS(1540), + [anon_sym__Alignof] = ACTIONS(1540), + [anon_sym_offsetof] = ACTIONS(1540), + [anon_sym__Generic] = ACTIONS(1540), + [anon_sym_asm] = ACTIONS(1540), + [anon_sym___asm__] = ACTIONS(1540), + [anon_sym___asm] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_L_SQUOTE] = ACTIONS(1542), + [anon_sym_u_SQUOTE] = ACTIONS(1542), + [anon_sym_U_SQUOTE] = ACTIONS(1542), + [anon_sym_u8_SQUOTE] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_L_DQUOTE] = ACTIONS(1542), + [anon_sym_u_DQUOTE] = ACTIONS(1542), + [anon_sym_U_DQUOTE] = ACTIONS(1542), + [anon_sym_u8_DQUOTE] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym_true] = ACTIONS(1540), + [sym_false] = ACTIONS(1540), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + }, + [STATE(346)] = { + [sym_else_clause] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [anon_sym__Nonnull] = ACTIONS(1340), + [anon_sym_alignas] = ACTIONS(1340), + [anon_sym__Alignas] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1675), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [anon_sym___asm] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + }, + [STATE(347)] = { + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___attribute] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [anon_sym__Nonnull] = ACTIONS(1512), + [anon_sym_alignas] = ACTIONS(1512), + [anon_sym__Alignas] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [anon_sym___asm] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), + [sym_comment] = ACTIONS(3), + }, + [STATE(348)] = { + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym___attribute] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [anon_sym__Nonnull] = ACTIONS(1516), + [anon_sym_alignas] = ACTIONS(1516), + [anon_sym__Alignas] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [anon_sym___asm] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), + }, + [STATE(349)] = { + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym___attribute] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [anon_sym__Nonnull] = ACTIONS(1520), + [anon_sym_alignas] = ACTIONS(1520), + [anon_sym__Alignas] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [anon_sym___asm] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), + [sym_comment] = ACTIONS(3), + }, + [STATE(350)] = { + [sym_identifier] = ACTIONS(1528), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token2] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym___attribute] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [anon_sym__Nonnull] = ACTIONS(1528), + [anon_sym_alignas] = ACTIONS(1528), + [anon_sym__Alignas] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym___try] = ACTIONS(1528), + [anon_sym___leave] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [anon_sym___asm] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), + [sym_comment] = ACTIONS(3), + }, + [STATE(351)] = { + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token2] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___attribute] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym__Nonnull] = ACTIONS(1524), + [anon_sym_alignas] = ACTIONS(1524), + [anon_sym__Alignas] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [anon_sym___asm] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + }, + [STATE(352)] = { + [sym_identifier] = ACTIONS(1532), + [aux_sym_preproc_include_token1] = ACTIONS(1532), + [aux_sym_preproc_def_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token2] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1532), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym___extension__] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym___attribute__] = ACTIONS(1532), + [anon_sym___attribute] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym___declspec] = ACTIONS(1532), + [anon_sym___cdecl] = ACTIONS(1532), + [anon_sym___clrcall] = ACTIONS(1532), + [anon_sym___stdcall] = ACTIONS(1532), + [anon_sym___fastcall] = ACTIONS(1532), + [anon_sym___thiscall] = ACTIONS(1532), + [anon_sym___vectorcall] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_signed] = ACTIONS(1532), + [anon_sym_unsigned] = ACTIONS(1532), + [anon_sym_long] = ACTIONS(1532), + [anon_sym_short] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_auto] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_inline] = ACTIONS(1532), + [anon_sym___inline] = ACTIONS(1532), + [anon_sym___inline__] = ACTIONS(1532), + [anon_sym___forceinline] = ACTIONS(1532), + [anon_sym_thread_local] = ACTIONS(1532), + [anon_sym___thread] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1532), + [anon_sym_volatile] = ACTIONS(1532), + [anon_sym_restrict] = ACTIONS(1532), + [anon_sym___restrict__] = ACTIONS(1532), + [anon_sym__Atomic] = ACTIONS(1532), + [anon_sym__Noreturn] = ACTIONS(1532), + [anon_sym_noreturn] = ACTIONS(1532), + [anon_sym__Nonnull] = ACTIONS(1532), + [anon_sym_alignas] = ACTIONS(1532), + [anon_sym__Alignas] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_case] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_goto] = ACTIONS(1532), + [anon_sym___try] = ACTIONS(1532), + [anon_sym___leave] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1532), + [anon_sym__Generic] = ACTIONS(1532), + [anon_sym_asm] = ACTIONS(1532), + [anon_sym___asm__] = ACTIONS(1532), + [anon_sym___asm] = ACTIONS(1532), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_L_SQUOTE] = ACTIONS(1534), + [anon_sym_u_SQUOTE] = ACTIONS(1534), + [anon_sym_U_SQUOTE] = ACTIONS(1534), + [anon_sym_u8_SQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1532), + [sym_false] = ACTIONS(1532), + [anon_sym_NULL] = ACTIONS(1532), + [anon_sym_nullptr] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + }, + [STATE(353)] = { + [sym_identifier] = ACTIONS(1544), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token2] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym___extension__] = ACTIONS(1544), + [anon_sym_typedef] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym___attribute] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), + [anon_sym___declspec] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_signed] = ACTIONS(1544), + [anon_sym_unsigned] = ACTIONS(1544), + [anon_sym_long] = ACTIONS(1544), + [anon_sym_short] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_auto] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_inline] = ACTIONS(1544), + [anon_sym___inline] = ACTIONS(1544), + [anon_sym___inline__] = ACTIONS(1544), + [anon_sym___forceinline] = ACTIONS(1544), + [anon_sym_thread_local] = ACTIONS(1544), + [anon_sym___thread] = ACTIONS(1544), + [anon_sym_constexpr] = ACTIONS(1544), + [anon_sym_volatile] = ACTIONS(1544), + [anon_sym_restrict] = ACTIONS(1544), + [anon_sym___restrict__] = ACTIONS(1544), + [anon_sym__Atomic] = ACTIONS(1544), + [anon_sym__Noreturn] = ACTIONS(1544), + [anon_sym_noreturn] = ACTIONS(1544), + [anon_sym__Nonnull] = ACTIONS(1544), + [anon_sym_alignas] = ACTIONS(1544), + [anon_sym__Alignas] = ACTIONS(1544), + [sym_primitive_type] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_switch] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1544), + [anon_sym___leave] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1544), + [anon_sym___alignof__] = ACTIONS(1544), + [anon_sym___alignof] = ACTIONS(1544), + [anon_sym__alignof] = ACTIONS(1544), + [anon_sym_alignof] = ACTIONS(1544), + [anon_sym__Alignof] = ACTIONS(1544), + [anon_sym_offsetof] = ACTIONS(1544), + [anon_sym__Generic] = ACTIONS(1544), + [anon_sym_asm] = ACTIONS(1544), + [anon_sym___asm__] = ACTIONS(1544), + [anon_sym___asm] = ACTIONS(1544), + [sym_number_literal] = ACTIONS(1546), + [anon_sym_L_SQUOTE] = ACTIONS(1546), + [anon_sym_u_SQUOTE] = ACTIONS(1546), + [anon_sym_U_SQUOTE] = ACTIONS(1546), + [anon_sym_u8_SQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1544), + [sym_false] = ACTIONS(1544), + [anon_sym_NULL] = ACTIONS(1544), + [anon_sym_nullptr] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + }, + [STATE(354)] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym___attribute] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [anon_sym__Nonnull] = ACTIONS(1476), + [anon_sym_alignas] = ACTIONS(1476), + [anon_sym__Alignas] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [anon_sym___asm] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [STATE(355)] = { + [sym_identifier] = ACTIONS(1548), + [aux_sym_preproc_include_token1] = ACTIONS(1548), + [aux_sym_preproc_def_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token2] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), + [sym_preproc_directive] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_typedef] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym___attribute__] = ACTIONS(1548), + [anon_sym___attribute] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), + [anon_sym___declspec] = ACTIONS(1548), + [anon_sym___cdecl] = ACTIONS(1548), + [anon_sym___clrcall] = ACTIONS(1548), + [anon_sym___stdcall] = ACTIONS(1548), + [anon_sym___fastcall] = ACTIONS(1548), + [anon_sym___thiscall] = ACTIONS(1548), + [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_signed] = ACTIONS(1548), + [anon_sym_unsigned] = ACTIONS(1548), + [anon_sym_long] = ACTIONS(1548), + [anon_sym_short] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_auto] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_inline] = ACTIONS(1548), + [anon_sym___inline] = ACTIONS(1548), + [anon_sym___inline__] = ACTIONS(1548), + [anon_sym___forceinline] = ACTIONS(1548), + [anon_sym_thread_local] = ACTIONS(1548), + [anon_sym___thread] = ACTIONS(1548), + [anon_sym_constexpr] = ACTIONS(1548), + [anon_sym_volatile] = ACTIONS(1548), + [anon_sym_restrict] = ACTIONS(1548), + [anon_sym___restrict__] = ACTIONS(1548), + [anon_sym__Atomic] = ACTIONS(1548), + [anon_sym__Noreturn] = ACTIONS(1548), + [anon_sym_noreturn] = ACTIONS(1548), + [anon_sym__Nonnull] = ACTIONS(1548), + [anon_sym_alignas] = ACTIONS(1548), + [anon_sym__Alignas] = ACTIONS(1548), + [sym_primitive_type] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_goto] = ACTIONS(1548), + [anon_sym___try] = ACTIONS(1548), + [anon_sym___leave] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(1548), + [anon_sym___alignof] = ACTIONS(1548), + [anon_sym__alignof] = ACTIONS(1548), + [anon_sym_alignof] = ACTIONS(1548), + [anon_sym__Alignof] = ACTIONS(1548), + [anon_sym_offsetof] = ACTIONS(1548), + [anon_sym__Generic] = ACTIONS(1548), + [anon_sym_asm] = ACTIONS(1548), + [anon_sym___asm__] = ACTIONS(1548), + [anon_sym___asm] = ACTIONS(1548), + [sym_number_literal] = ACTIONS(1551), + [anon_sym_L_SQUOTE] = ACTIONS(1551), + [anon_sym_u_SQUOTE] = ACTIONS(1551), + [anon_sym_U_SQUOTE] = ACTIONS(1551), + [anon_sym_u8_SQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_L_DQUOTE] = ACTIONS(1551), + [anon_sym_u_DQUOTE] = ACTIONS(1551), + [anon_sym_U_DQUOTE] = ACTIONS(1551), + [anon_sym_u8_DQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [anon_sym_NULL] = ACTIONS(1548), + [anon_sym_nullptr] = ACTIONS(1548), + [sym_comment] = ACTIONS(3), + }, + [STATE(356)] = { + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym___attribute__] = ACTIONS(1536), + [anon_sym___attribute] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym___declspec] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1536), + [anon_sym_unsigned] = ACTIONS(1536), + [anon_sym_long] = ACTIONS(1536), + [anon_sym_short] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(1536), + [anon_sym___inline] = ACTIONS(1536), + [anon_sym___inline__] = ACTIONS(1536), + [anon_sym___forceinline] = ACTIONS(1536), + [anon_sym_thread_local] = ACTIONS(1536), + [anon_sym___thread] = ACTIONS(1536), + [anon_sym_constexpr] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1536), + [anon_sym_restrict] = ACTIONS(1536), + [anon_sym___restrict__] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1536), + [anon_sym__Noreturn] = ACTIONS(1536), + [anon_sym_noreturn] = ACTIONS(1536), + [anon_sym__Nonnull] = ACTIONS(1536), + [anon_sym_alignas] = ACTIONS(1536), + [anon_sym__Alignas] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1536), + [anon_sym___try] = ACTIONS(1536), + [anon_sym___leave] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1536), + [anon_sym___alignof__] = ACTIONS(1536), + [anon_sym___alignof] = ACTIONS(1536), + [anon_sym__alignof] = ACTIONS(1536), + [anon_sym_alignof] = ACTIONS(1536), + [anon_sym__Alignof] = ACTIONS(1536), + [anon_sym_offsetof] = ACTIONS(1536), + [anon_sym__Generic] = ACTIONS(1536), + [anon_sym_asm] = ACTIONS(1536), + [anon_sym___asm__] = ACTIONS(1536), + [anon_sym___asm] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1538), + [anon_sym_L_SQUOTE] = ACTIONS(1538), + [anon_sym_u_SQUOTE] = ACTIONS(1538), + [anon_sym_U_SQUOTE] = ACTIONS(1538), + [anon_sym_u8_SQUOTE] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_L_DQUOTE] = ACTIONS(1538), + [anon_sym_u_DQUOTE] = ACTIONS(1538), + [anon_sym_U_DQUOTE] = ACTIONS(1538), + [anon_sym_u8_DQUOTE] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [anon_sym_NULL] = ACTIONS(1536), + [anon_sym_nullptr] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + }, + [STATE(357)] = { + [sym_identifier] = ACTIONS(1633), + [aux_sym_preproc_include_token1] = ACTIONS(1633), + [aux_sym_preproc_def_token1] = ACTIONS(1633), + [aux_sym_preproc_if_token1] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), + [sym_preproc_directive] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym___extension__] = ACTIONS(1633), + [anon_sym_typedef] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym___attribute__] = ACTIONS(1633), + [anon_sym___attribute] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), + [anon_sym___declspec] = ACTIONS(1633), + [anon_sym___cdecl] = ACTIONS(1633), + [anon_sym___clrcall] = ACTIONS(1633), + [anon_sym___stdcall] = ACTIONS(1633), + [anon_sym___fastcall] = ACTIONS(1633), + [anon_sym___thiscall] = ACTIONS(1633), + [anon_sym___vectorcall] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_RBRACE] = ACTIONS(1635), + [anon_sym_signed] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_auto] = ACTIONS(1633), + [anon_sym_register] = ACTIONS(1633), + [anon_sym_inline] = ACTIONS(1633), + [anon_sym___inline] = ACTIONS(1633), + [anon_sym___inline__] = ACTIONS(1633), + [anon_sym___forceinline] = ACTIONS(1633), + [anon_sym_thread_local] = ACTIONS(1633), + [anon_sym___thread] = ACTIONS(1633), + [anon_sym_constexpr] = ACTIONS(1633), + [anon_sym_volatile] = ACTIONS(1633), + [anon_sym_restrict] = ACTIONS(1633), + [anon_sym___restrict__] = ACTIONS(1633), + [anon_sym__Atomic] = ACTIONS(1633), + [anon_sym__Noreturn] = ACTIONS(1633), + [anon_sym_noreturn] = ACTIONS(1633), + [anon_sym__Nonnull] = ACTIONS(1633), + [anon_sym_alignas] = ACTIONS(1633), + [anon_sym__Alignas] = ACTIONS(1633), + [sym_primitive_type] = ACTIONS(1633), + [anon_sym_enum] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1633), + [anon_sym_union] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_case] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_goto] = ACTIONS(1633), + [anon_sym___try] = ACTIONS(1633), + [anon_sym___leave] = ACTIONS(1633), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(1633), + [anon_sym___alignof__] = ACTIONS(1633), + [anon_sym___alignof] = ACTIONS(1633), + [anon_sym__alignof] = ACTIONS(1633), + [anon_sym_alignof] = ACTIONS(1633), + [anon_sym__Alignof] = ACTIONS(1633), + [anon_sym_offsetof] = ACTIONS(1633), + [anon_sym__Generic] = ACTIONS(1633), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym___asm__] = ACTIONS(1633), + [anon_sym___asm] = ACTIONS(1633), + [sym_number_literal] = ACTIONS(1635), + [anon_sym_L_SQUOTE] = ACTIONS(1635), + [anon_sym_u_SQUOTE] = ACTIONS(1635), + [anon_sym_U_SQUOTE] = ACTIONS(1635), + [anon_sym_u8_SQUOTE] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_L_DQUOTE] = ACTIONS(1635), + [anon_sym_u_DQUOTE] = ACTIONS(1635), + [anon_sym_U_DQUOTE] = ACTIONS(1635), + [anon_sym_u8_DQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_true] = ACTIONS(1633), + [sym_false] = ACTIONS(1633), + [anon_sym_NULL] = ACTIONS(1633), + [anon_sym_nullptr] = ACTIONS(1633), + [sym_comment] = ACTIONS(3), + }, + [STATE(358)] = { + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1566), + [aux_sym_preproc_include_token1] = ACTIONS(1566), + [aux_sym_preproc_def_token1] = ACTIONS(1566), + [anon_sym_COMMA] = ACTIONS(1568), + [aux_sym_preproc_if_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1566), + [sym_preproc_directive] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym___extension__] = ACTIONS(1566), + [anon_sym_typedef] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym___attribute__] = ACTIONS(1566), + [anon_sym___attribute] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym___declspec] = ACTIONS(1566), + [anon_sym___cdecl] = ACTIONS(1566), + [anon_sym___clrcall] = ACTIONS(1566), + [anon_sym___stdcall] = ACTIONS(1566), + [anon_sym___fastcall] = ACTIONS(1566), + [anon_sym___thiscall] = ACTIONS(1566), + [anon_sym___vectorcall] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1566), + [anon_sym_unsigned] = ACTIONS(1566), + [anon_sym_long] = ACTIONS(1566), + [anon_sym_short] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_auto] = ACTIONS(1566), + [anon_sym_register] = ACTIONS(1566), + [anon_sym_inline] = ACTIONS(1566), + [anon_sym___inline] = ACTIONS(1566), + [anon_sym___inline__] = ACTIONS(1566), + [anon_sym___forceinline] = ACTIONS(1566), + [anon_sym_thread_local] = ACTIONS(1566), + [anon_sym___thread] = ACTIONS(1566), + [anon_sym_constexpr] = ACTIONS(1566), + [anon_sym_volatile] = ACTIONS(1566), + [anon_sym_restrict] = ACTIONS(1566), + [anon_sym___restrict__] = ACTIONS(1566), + [anon_sym__Atomic] = ACTIONS(1566), + [anon_sym__Noreturn] = ACTIONS(1566), + [anon_sym_noreturn] = ACTIONS(1566), + [anon_sym__Nonnull] = ACTIONS(1566), + [anon_sym_alignas] = ACTIONS(1566), + [anon_sym__Alignas] = ACTIONS(1566), + [sym_primitive_type] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_do] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_sizeof] = ACTIONS(1566), + [anon_sym___alignof__] = ACTIONS(1566), + [anon_sym___alignof] = ACTIONS(1566), + [anon_sym__alignof] = ACTIONS(1566), + [anon_sym_alignof] = ACTIONS(1566), + [anon_sym__Alignof] = ACTIONS(1566), + [anon_sym_offsetof] = ACTIONS(1566), + [anon_sym__Generic] = ACTIONS(1566), + [anon_sym_asm] = ACTIONS(1566), + [anon_sym___asm__] = ACTIONS(1566), + [anon_sym___asm] = ACTIONS(1566), + [sym_number_literal] = ACTIONS(1568), + [anon_sym_L_SQUOTE] = ACTIONS(1568), + [anon_sym_u_SQUOTE] = ACTIONS(1568), + [anon_sym_U_SQUOTE] = ACTIONS(1568), + [anon_sym_u8_SQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_L_DQUOTE] = ACTIONS(1568), + [anon_sym_u_DQUOTE] = ACTIONS(1568), + [anon_sym_U_DQUOTE] = ACTIONS(1568), + [anon_sym_u8_DQUOTE] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [sym_true] = ACTIONS(1566), + [sym_false] = ACTIONS(1566), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + }, + [STATE(359)] = { + [sym_identifier] = ACTIONS(1637), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), + [sym_preproc_directive] = ACTIONS(1637), + [anon_sym_LPAREN2] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym___extension__] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym___attribute__] = ACTIONS(1637), + [anon_sym___attribute] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1637), + [anon_sym___cdecl] = ACTIONS(1637), + [anon_sym___clrcall] = ACTIONS(1637), + [anon_sym___stdcall] = ACTIONS(1637), + [anon_sym___fastcall] = ACTIONS(1637), + [anon_sym___thiscall] = ACTIONS(1637), + [anon_sym___vectorcall] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_auto] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym___inline] = ACTIONS(1637), + [anon_sym___inline__] = ACTIONS(1637), + [anon_sym___forceinline] = ACTIONS(1637), + [anon_sym_thread_local] = ACTIONS(1637), + [anon_sym___thread] = ACTIONS(1637), + [anon_sym_constexpr] = ACTIONS(1637), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_restrict] = ACTIONS(1637), + [anon_sym___restrict__] = ACTIONS(1637), + [anon_sym__Atomic] = ACTIONS(1637), + [anon_sym__Noreturn] = ACTIONS(1637), + [anon_sym_noreturn] = ACTIONS(1637), + [anon_sym__Nonnull] = ACTIONS(1637), + [anon_sym_alignas] = ACTIONS(1637), + [anon_sym__Alignas] = ACTIONS(1637), + [sym_primitive_type] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_case] = ACTIONS(1637), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_goto] = ACTIONS(1637), + [anon_sym___try] = ACTIONS(1637), + [anon_sym___leave] = ACTIONS(1637), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1637), + [anon_sym___alignof__] = ACTIONS(1637), + [anon_sym___alignof] = ACTIONS(1637), + [anon_sym__alignof] = ACTIONS(1637), + [anon_sym_alignof] = ACTIONS(1637), + [anon_sym__Alignof] = ACTIONS(1637), + [anon_sym_offsetof] = ACTIONS(1637), + [anon_sym__Generic] = ACTIONS(1637), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym___asm__] = ACTIONS(1637), + [anon_sym___asm] = ACTIONS(1637), + [sym_number_literal] = ACTIONS(1639), + [anon_sym_L_SQUOTE] = ACTIONS(1639), + [anon_sym_u_SQUOTE] = ACTIONS(1639), + [anon_sym_U_SQUOTE] = ACTIONS(1639), + [anon_sym_u8_SQUOTE] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_L_DQUOTE] = ACTIONS(1639), + [anon_sym_u_DQUOTE] = ACTIONS(1639), + [anon_sym_U_DQUOTE] = ACTIONS(1639), + [anon_sym_u8_DQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [sym_true] = ACTIONS(1637), + [sym_false] = ACTIONS(1637), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + }, + [STATE(360)] = { + [sym_identifier] = ACTIONS(1544), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym___extension__] = ACTIONS(1544), + [anon_sym_typedef] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym___attribute] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), + [anon_sym___declspec] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_signed] = ACTIONS(1544), + [anon_sym_unsigned] = ACTIONS(1544), + [anon_sym_long] = ACTIONS(1544), + [anon_sym_short] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_auto] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_inline] = ACTIONS(1544), + [anon_sym___inline] = ACTIONS(1544), + [anon_sym___inline__] = ACTIONS(1544), + [anon_sym___forceinline] = ACTIONS(1544), + [anon_sym_thread_local] = ACTIONS(1544), + [anon_sym___thread] = ACTIONS(1544), + [anon_sym_constexpr] = ACTIONS(1544), + [anon_sym_volatile] = ACTIONS(1544), + [anon_sym_restrict] = ACTIONS(1544), + [anon_sym___restrict__] = ACTIONS(1544), + [anon_sym__Atomic] = ACTIONS(1544), + [anon_sym__Noreturn] = ACTIONS(1544), + [anon_sym_noreturn] = ACTIONS(1544), + [anon_sym__Nonnull] = ACTIONS(1544), + [anon_sym_alignas] = ACTIONS(1544), + [anon_sym__Alignas] = ACTIONS(1544), + [sym_primitive_type] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_switch] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1544), + [anon_sym___leave] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1544), + [anon_sym___alignof__] = ACTIONS(1544), + [anon_sym___alignof] = ACTIONS(1544), + [anon_sym__alignof] = ACTIONS(1544), + [anon_sym_alignof] = ACTIONS(1544), + [anon_sym__Alignof] = ACTIONS(1544), + [anon_sym_offsetof] = ACTIONS(1544), + [anon_sym__Generic] = ACTIONS(1544), + [anon_sym_asm] = ACTIONS(1544), + [anon_sym___asm__] = ACTIONS(1544), + [anon_sym___asm] = ACTIONS(1544), + [sym_number_literal] = ACTIONS(1546), + [anon_sym_L_SQUOTE] = ACTIONS(1546), + [anon_sym_u_SQUOTE] = ACTIONS(1546), + [anon_sym_U_SQUOTE] = ACTIONS(1546), + [anon_sym_u8_SQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1544), + [sym_false] = ACTIONS(1544), + [anon_sym_NULL] = ACTIONS(1544), + [anon_sym_nullptr] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + }, + [STATE(361)] = { + [sym_identifier] = ACTIONS(1641), + [aux_sym_preproc_include_token1] = ACTIONS(1641), + [aux_sym_preproc_def_token1] = ACTIONS(1641), + [aux_sym_preproc_if_token1] = ACTIONS(1641), + [aux_sym_preproc_if_token2] = ACTIONS(1641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), + [sym_preproc_directive] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym___extension__] = ACTIONS(1641), + [anon_sym_typedef] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym___attribute__] = ACTIONS(1641), + [anon_sym___attribute] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1643), + [anon_sym___declspec] = ACTIONS(1641), + [anon_sym___cdecl] = ACTIONS(1641), + [anon_sym___clrcall] = ACTIONS(1641), + [anon_sym___stdcall] = ACTIONS(1641), + [anon_sym___fastcall] = ACTIONS(1641), + [anon_sym___thiscall] = ACTIONS(1641), + [anon_sym___vectorcall] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1641), + [anon_sym_unsigned] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_auto] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_inline] = ACTIONS(1641), + [anon_sym___inline] = ACTIONS(1641), + [anon_sym___inline__] = ACTIONS(1641), + [anon_sym___forceinline] = ACTIONS(1641), + [anon_sym_thread_local] = ACTIONS(1641), + [anon_sym___thread] = ACTIONS(1641), + [anon_sym_constexpr] = ACTIONS(1641), + [anon_sym_volatile] = ACTIONS(1641), + [anon_sym_restrict] = ACTIONS(1641), + [anon_sym___restrict__] = ACTIONS(1641), + [anon_sym__Atomic] = ACTIONS(1641), + [anon_sym__Noreturn] = ACTIONS(1641), + [anon_sym_noreturn] = ACTIONS(1641), + [anon_sym__Nonnull] = ACTIONS(1641), + [anon_sym_alignas] = ACTIONS(1641), + [anon_sym__Alignas] = ACTIONS(1641), + [sym_primitive_type] = ACTIONS(1641), + [anon_sym_enum] = ACTIONS(1641), + [anon_sym_struct] = ACTIONS(1641), + [anon_sym_union] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_case] = ACTIONS(1641), + [anon_sym_default] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_goto] = ACTIONS(1641), + [anon_sym___try] = ACTIONS(1641), + [anon_sym___leave] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_sizeof] = ACTIONS(1641), + [anon_sym___alignof__] = ACTIONS(1641), + [anon_sym___alignof] = ACTIONS(1641), + [anon_sym__alignof] = ACTIONS(1641), + [anon_sym_alignof] = ACTIONS(1641), + [anon_sym__Alignof] = ACTIONS(1641), + [anon_sym_offsetof] = ACTIONS(1641), + [anon_sym__Generic] = ACTIONS(1641), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym___asm__] = ACTIONS(1641), + [anon_sym___asm] = ACTIONS(1641), + [sym_number_literal] = ACTIONS(1643), + [anon_sym_L_SQUOTE] = ACTIONS(1643), + [anon_sym_u_SQUOTE] = ACTIONS(1643), + [anon_sym_U_SQUOTE] = ACTIONS(1643), + [anon_sym_u8_SQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_L_DQUOTE] = ACTIONS(1643), + [anon_sym_u_DQUOTE] = ACTIONS(1643), + [anon_sym_U_DQUOTE] = ACTIONS(1643), + [anon_sym_u8_DQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [anon_sym_NULL] = ACTIONS(1641), + [anon_sym_nullptr] = ACTIONS(1641), + [sym_comment] = ACTIONS(3), + }, + [STATE(362)] = { + [sym_identifier] = ACTIONS(1625), + [aux_sym_preproc_include_token1] = ACTIONS(1625), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [aux_sym_preproc_if_token1] = ACTIONS(1625), + [aux_sym_preproc_if_token2] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), + [sym_preproc_directive] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym___extension__] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym___attribute] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [anon_sym___declspec] = ACTIONS(1625), + [anon_sym___cdecl] = ACTIONS(1625), + [anon_sym___clrcall] = ACTIONS(1625), + [anon_sym___stdcall] = ACTIONS(1625), + [anon_sym___fastcall] = ACTIONS(1625), + [anon_sym___thiscall] = ACTIONS(1625), + [anon_sym___vectorcall] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_auto] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym___inline] = ACTIONS(1625), + [anon_sym___inline__] = ACTIONS(1625), + [anon_sym___forceinline] = ACTIONS(1625), + [anon_sym_thread_local] = ACTIONS(1625), + [anon_sym___thread] = ACTIONS(1625), + [anon_sym_constexpr] = ACTIONS(1625), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_restrict] = ACTIONS(1625), + [anon_sym___restrict__] = ACTIONS(1625), + [anon_sym__Atomic] = ACTIONS(1625), + [anon_sym__Noreturn] = ACTIONS(1625), + [anon_sym_noreturn] = ACTIONS(1625), + [anon_sym__Nonnull] = ACTIONS(1625), + [anon_sym_alignas] = ACTIONS(1625), + [anon_sym__Alignas] = ACTIONS(1625), + [sym_primitive_type] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_case] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_goto] = ACTIONS(1625), + [anon_sym___try] = ACTIONS(1625), + [anon_sym___leave] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_sizeof] = ACTIONS(1625), + [anon_sym___alignof__] = ACTIONS(1625), + [anon_sym___alignof] = ACTIONS(1625), + [anon_sym__alignof] = ACTIONS(1625), + [anon_sym_alignof] = ACTIONS(1625), + [anon_sym__Alignof] = ACTIONS(1625), + [anon_sym_offsetof] = ACTIONS(1625), + [anon_sym__Generic] = ACTIONS(1625), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym___asm__] = ACTIONS(1625), + [anon_sym___asm] = ACTIONS(1625), + [sym_number_literal] = ACTIONS(1627), + [anon_sym_L_SQUOTE] = ACTIONS(1627), + [anon_sym_u_SQUOTE] = ACTIONS(1627), + [anon_sym_U_SQUOTE] = ACTIONS(1627), + [anon_sym_u8_SQUOTE] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_L_DQUOTE] = ACTIONS(1627), + [anon_sym_u_DQUOTE] = ACTIONS(1627), + [anon_sym_U_DQUOTE] = ACTIONS(1627), + [anon_sym_u8_DQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [anon_sym_NULL] = ACTIONS(1625), + [anon_sym_nullptr] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + }, + [STATE(363)] = { + [sym_identifier] = ACTIONS(1633), + [aux_sym_preproc_include_token1] = ACTIONS(1633), + [aux_sym_preproc_def_token1] = ACTIONS(1633), + [aux_sym_preproc_if_token1] = ACTIONS(1633), + [aux_sym_preproc_if_token2] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), + [sym_preproc_directive] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym___extension__] = ACTIONS(1633), + [anon_sym_typedef] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym___attribute__] = ACTIONS(1633), + [anon_sym___attribute] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), + [anon_sym___declspec] = ACTIONS(1633), + [anon_sym___cdecl] = ACTIONS(1633), + [anon_sym___clrcall] = ACTIONS(1633), + [anon_sym___stdcall] = ACTIONS(1633), + [anon_sym___fastcall] = ACTIONS(1633), + [anon_sym___thiscall] = ACTIONS(1633), + [anon_sym___vectorcall] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_signed] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_auto] = ACTIONS(1633), + [anon_sym_register] = ACTIONS(1633), + [anon_sym_inline] = ACTIONS(1633), + [anon_sym___inline] = ACTIONS(1633), + [anon_sym___inline__] = ACTIONS(1633), + [anon_sym___forceinline] = ACTIONS(1633), + [anon_sym_thread_local] = ACTIONS(1633), + [anon_sym___thread] = ACTIONS(1633), + [anon_sym_constexpr] = ACTIONS(1633), + [anon_sym_volatile] = ACTIONS(1633), + [anon_sym_restrict] = ACTIONS(1633), + [anon_sym___restrict__] = ACTIONS(1633), + [anon_sym__Atomic] = ACTIONS(1633), + [anon_sym__Noreturn] = ACTIONS(1633), + [anon_sym_noreturn] = ACTIONS(1633), + [anon_sym__Nonnull] = ACTIONS(1633), + [anon_sym_alignas] = ACTIONS(1633), + [anon_sym__Alignas] = ACTIONS(1633), + [sym_primitive_type] = ACTIONS(1633), + [anon_sym_enum] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1633), + [anon_sym_union] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_case] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_goto] = ACTIONS(1633), + [anon_sym___try] = ACTIONS(1633), + [anon_sym___leave] = ACTIONS(1633), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(1633), + [anon_sym___alignof__] = ACTIONS(1633), + [anon_sym___alignof] = ACTIONS(1633), + [anon_sym__alignof] = ACTIONS(1633), + [anon_sym_alignof] = ACTIONS(1633), + [anon_sym__Alignof] = ACTIONS(1633), + [anon_sym_offsetof] = ACTIONS(1633), + [anon_sym__Generic] = ACTIONS(1633), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym___asm__] = ACTIONS(1633), + [anon_sym___asm] = ACTIONS(1633), + [sym_number_literal] = ACTIONS(1635), + [anon_sym_L_SQUOTE] = ACTIONS(1635), + [anon_sym_u_SQUOTE] = ACTIONS(1635), + [anon_sym_U_SQUOTE] = ACTIONS(1635), + [anon_sym_u8_SQUOTE] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_L_DQUOTE] = ACTIONS(1635), + [anon_sym_u_DQUOTE] = ACTIONS(1635), + [anon_sym_U_DQUOTE] = ACTIONS(1635), + [anon_sym_u8_DQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_true] = ACTIONS(1633), + [sym_false] = ACTIONS(1633), + [anon_sym_NULL] = ACTIONS(1633), + [anon_sym_nullptr] = ACTIONS(1633), + [sym_comment] = ACTIONS(3), + }, + [STATE(364)] = { + [sym_identifier] = ACTIONS(1566), + [aux_sym_preproc_include_token1] = ACTIONS(1566), + [aux_sym_preproc_def_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1566), + [sym_preproc_directive] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym___extension__] = ACTIONS(1566), + [anon_sym_typedef] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym___attribute__] = ACTIONS(1566), + [anon_sym___attribute] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym___declspec] = ACTIONS(1566), + [anon_sym___cdecl] = ACTIONS(1566), + [anon_sym___clrcall] = ACTIONS(1566), + [anon_sym___stdcall] = ACTIONS(1566), + [anon_sym___fastcall] = ACTIONS(1566), + [anon_sym___thiscall] = ACTIONS(1566), + [anon_sym___vectorcall] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1566), + [anon_sym_unsigned] = ACTIONS(1566), + [anon_sym_long] = ACTIONS(1566), + [anon_sym_short] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_auto] = ACTIONS(1566), + [anon_sym_register] = ACTIONS(1566), + [anon_sym_inline] = ACTIONS(1566), + [anon_sym___inline] = ACTIONS(1566), + [anon_sym___inline__] = ACTIONS(1566), + [anon_sym___forceinline] = ACTIONS(1566), + [anon_sym_thread_local] = ACTIONS(1566), + [anon_sym___thread] = ACTIONS(1566), + [anon_sym_constexpr] = ACTIONS(1566), + [anon_sym_volatile] = ACTIONS(1566), + [anon_sym_restrict] = ACTIONS(1566), + [anon_sym___restrict__] = ACTIONS(1566), + [anon_sym__Atomic] = ACTIONS(1566), + [anon_sym__Noreturn] = ACTIONS(1566), + [anon_sym_noreturn] = ACTIONS(1566), + [anon_sym__Nonnull] = ACTIONS(1566), + [anon_sym_alignas] = ACTIONS(1566), + [anon_sym__Alignas] = ACTIONS(1566), + [sym_primitive_type] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_do] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1566), + [anon_sym___try] = ACTIONS(1566), + [anon_sym___leave] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_sizeof] = ACTIONS(1566), + [anon_sym___alignof__] = ACTIONS(1566), + [anon_sym___alignof] = ACTIONS(1566), + [anon_sym__alignof] = ACTIONS(1566), + [anon_sym_alignof] = ACTIONS(1566), + [anon_sym__Alignof] = ACTIONS(1566), + [anon_sym_offsetof] = ACTIONS(1566), + [anon_sym__Generic] = ACTIONS(1566), + [anon_sym_asm] = ACTIONS(1566), + [anon_sym___asm__] = ACTIONS(1566), + [anon_sym___asm] = ACTIONS(1566), + [sym_number_literal] = ACTIONS(1568), + [anon_sym_L_SQUOTE] = ACTIONS(1568), + [anon_sym_u_SQUOTE] = ACTIONS(1568), + [anon_sym_U_SQUOTE] = ACTIONS(1568), + [anon_sym_u8_SQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_L_DQUOTE] = ACTIONS(1568), + [anon_sym_u_DQUOTE] = ACTIONS(1568), + [anon_sym_U_DQUOTE] = ACTIONS(1568), + [anon_sym_u8_DQUOTE] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [sym_true] = ACTIONS(1566), + [sym_false] = ACTIONS(1566), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + }, + [STATE(365)] = { + [ts_builtin_sym_end] = ACTIONS(1639), + [sym_identifier] = ACTIONS(1637), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_COMMA] = ACTIONS(1639), + [aux_sym_preproc_if_token1] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), + [sym_preproc_directive] = ACTIONS(1637), + [anon_sym_LPAREN2] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym___extension__] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym___attribute__] = ACTIONS(1637), + [anon_sym___attribute] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1637), + [anon_sym___cdecl] = ACTIONS(1637), + [anon_sym___clrcall] = ACTIONS(1637), + [anon_sym___stdcall] = ACTIONS(1637), + [anon_sym___fastcall] = ACTIONS(1637), + [anon_sym___thiscall] = ACTIONS(1637), + [anon_sym___vectorcall] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_auto] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym___inline] = ACTIONS(1637), + [anon_sym___inline__] = ACTIONS(1637), + [anon_sym___forceinline] = ACTIONS(1637), + [anon_sym_thread_local] = ACTIONS(1637), + [anon_sym___thread] = ACTIONS(1637), + [anon_sym_constexpr] = ACTIONS(1637), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_restrict] = ACTIONS(1637), + [anon_sym___restrict__] = ACTIONS(1637), + [anon_sym__Atomic] = ACTIONS(1637), + [anon_sym__Noreturn] = ACTIONS(1637), + [anon_sym_noreturn] = ACTIONS(1637), + [anon_sym__Nonnull] = ACTIONS(1637), + [anon_sym_alignas] = ACTIONS(1637), + [anon_sym__Alignas] = ACTIONS(1637), + [sym_primitive_type] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_case] = ACTIONS(1637), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_goto] = ACTIONS(1637), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1637), + [anon_sym___alignof__] = ACTIONS(1637), + [anon_sym___alignof] = ACTIONS(1637), + [anon_sym__alignof] = ACTIONS(1637), + [anon_sym_alignof] = ACTIONS(1637), + [anon_sym__Alignof] = ACTIONS(1637), + [anon_sym_offsetof] = ACTIONS(1637), + [anon_sym__Generic] = ACTIONS(1637), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym___asm__] = ACTIONS(1637), + [anon_sym___asm] = ACTIONS(1637), + [sym_number_literal] = ACTIONS(1639), + [anon_sym_L_SQUOTE] = ACTIONS(1639), + [anon_sym_u_SQUOTE] = ACTIONS(1639), + [anon_sym_U_SQUOTE] = ACTIONS(1639), + [anon_sym_u8_SQUOTE] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_L_DQUOTE] = ACTIONS(1639), + [anon_sym_u_DQUOTE] = ACTIONS(1639), + [anon_sym_U_DQUOTE] = ACTIONS(1639), + [anon_sym_u8_DQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [sym_true] = ACTIONS(1637), + [sym_false] = ACTIONS(1637), + [anon_sym_NULL] = ACTIONS(1637), + [anon_sym_nullptr] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + }, + [STATE(366)] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym___attribute] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [anon_sym__Nonnull] = ACTIONS(1480), + [anon_sym_alignas] = ACTIONS(1480), + [anon_sym__Alignas] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [anon_sym___asm] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [STATE(367)] = { + [sym_identifier] = ACTIONS(1540), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym___extension__] = ACTIONS(1540), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1540), + [anon_sym___attribute] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1542), + [anon_sym___declspec] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_signed] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_inline] = ACTIONS(1540), + [anon_sym___inline] = ACTIONS(1540), + [anon_sym___inline__] = ACTIONS(1540), + [anon_sym___forceinline] = ACTIONS(1540), + [anon_sym_thread_local] = ACTIONS(1540), + [anon_sym___thread] = ACTIONS(1540), + [anon_sym_constexpr] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym___restrict__] = ACTIONS(1540), + [anon_sym__Atomic] = ACTIONS(1540), + [anon_sym__Noreturn] = ACTIONS(1540), + [anon_sym_noreturn] = ACTIONS(1540), + [anon_sym__Nonnull] = ACTIONS(1540), + [anon_sym_alignas] = ACTIONS(1540), + [anon_sym__Alignas] = ACTIONS(1540), + [sym_primitive_type] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym___try] = ACTIONS(1540), + [anon_sym___leave] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_sizeof] = ACTIONS(1540), + [anon_sym___alignof__] = ACTIONS(1540), + [anon_sym___alignof] = ACTIONS(1540), + [anon_sym__alignof] = ACTIONS(1540), + [anon_sym_alignof] = ACTIONS(1540), + [anon_sym__Alignof] = ACTIONS(1540), + [anon_sym_offsetof] = ACTIONS(1540), + [anon_sym__Generic] = ACTIONS(1540), + [anon_sym_asm] = ACTIONS(1540), + [anon_sym___asm__] = ACTIONS(1540), + [anon_sym___asm] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_L_SQUOTE] = ACTIONS(1542), + [anon_sym_u_SQUOTE] = ACTIONS(1542), + [anon_sym_U_SQUOTE] = ACTIONS(1542), + [anon_sym_u8_SQUOTE] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_L_DQUOTE] = ACTIONS(1542), + [anon_sym_u_DQUOTE] = ACTIONS(1542), + [anon_sym_U_DQUOTE] = ACTIONS(1542), + [anon_sym_u8_DQUOTE] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym_true] = ACTIONS(1540), + [sym_false] = ACTIONS(1540), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + }, + [STATE(368)] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym___attribute] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [anon_sym__Nonnull] = ACTIONS(1484), + [anon_sym_alignas] = ACTIONS(1484), + [anon_sym__Alignas] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [anon_sym___asm] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [STATE(369)] = { + [sym_identifier] = ACTIONS(1625), + [aux_sym_preproc_include_token1] = ACTIONS(1625), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [aux_sym_preproc_if_token1] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), + [sym_preproc_directive] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym___extension__] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym___attribute] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [anon_sym___declspec] = ACTIONS(1625), + [anon_sym___cdecl] = ACTIONS(1625), + [anon_sym___clrcall] = ACTIONS(1625), + [anon_sym___stdcall] = ACTIONS(1625), + [anon_sym___fastcall] = ACTIONS(1625), + [anon_sym___thiscall] = ACTIONS(1625), + [anon_sym___vectorcall] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_auto] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym___inline] = ACTIONS(1625), + [anon_sym___inline__] = ACTIONS(1625), + [anon_sym___forceinline] = ACTIONS(1625), + [anon_sym_thread_local] = ACTIONS(1625), + [anon_sym___thread] = ACTIONS(1625), + [anon_sym_constexpr] = ACTIONS(1625), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_restrict] = ACTIONS(1625), + [anon_sym___restrict__] = ACTIONS(1625), + [anon_sym__Atomic] = ACTIONS(1625), + [anon_sym__Noreturn] = ACTIONS(1625), + [anon_sym_noreturn] = ACTIONS(1625), + [anon_sym__Nonnull] = ACTIONS(1625), + [anon_sym_alignas] = ACTIONS(1625), + [anon_sym__Alignas] = ACTIONS(1625), + [sym_primitive_type] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_case] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_goto] = ACTIONS(1625), + [anon_sym___try] = ACTIONS(1625), + [anon_sym___leave] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_sizeof] = ACTIONS(1625), + [anon_sym___alignof__] = ACTIONS(1625), + [anon_sym___alignof] = ACTIONS(1625), + [anon_sym__alignof] = ACTIONS(1625), + [anon_sym_alignof] = ACTIONS(1625), + [anon_sym__Alignof] = ACTIONS(1625), + [anon_sym_offsetof] = ACTIONS(1625), + [anon_sym__Generic] = ACTIONS(1625), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym___asm__] = ACTIONS(1625), + [anon_sym___asm] = ACTIONS(1625), + [sym_number_literal] = ACTIONS(1627), + [anon_sym_L_SQUOTE] = ACTIONS(1627), + [anon_sym_u_SQUOTE] = ACTIONS(1627), + [anon_sym_U_SQUOTE] = ACTIONS(1627), + [anon_sym_u8_SQUOTE] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_L_DQUOTE] = ACTIONS(1627), + [anon_sym_u_DQUOTE] = ACTIONS(1627), + [anon_sym_U_DQUOTE] = ACTIONS(1627), + [anon_sym_u8_DQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [anon_sym_NULL] = ACTIONS(1625), + [anon_sym_nullptr] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + }, + [STATE(370)] = { + [sym_expression] = STATE(928), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(898), + [sym_initializer_list] = STATE(897), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(941), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1663), + [anon_sym_COMMA] = ACTIONS(1657), + [aux_sym_preproc_if_token2] = ACTIONS(1657), + [aux_sym_preproc_else_token1] = ACTIONS(1657), + [aux_sym_preproc_elif_token1] = ACTIONS(1663), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1657), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym___extension__] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_EQ] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_STAR_EQ] = ACTIONS(1657), + [anon_sym_SLASH_EQ] = ACTIONS(1657), + [anon_sym_PERCENT_EQ] = ACTIONS(1657), + [anon_sym_PLUS_EQ] = ACTIONS(1657), + [anon_sym_DASH_EQ] = ACTIONS(1657), + [anon_sym_LT_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_GT_EQ] = ACTIONS(1657), + [anon_sym_AMP_EQ] = ACTIONS(1657), + [anon_sym_CARET_EQ] = ACTIONS(1657), + [anon_sym_PIPE_EQ] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1683), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(1657), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1671), + [anon_sym_nullptr] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + }, + [STATE(371)] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(346), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(372)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(199), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(373)] = { + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [aux_sym_preproc_include_token1] = ACTIONS(1691), + [aux_sym_preproc_def_token1] = ACTIONS(1691), + [aux_sym_preproc_if_token1] = ACTIONS(1691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1691), + [sym_preproc_directive] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym___extension__] = ACTIONS(1691), + [anon_sym_typedef] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym___attribute__] = ACTIONS(1691), + [anon_sym___attribute] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1689), + [anon_sym___declspec] = ACTIONS(1691), + [anon_sym___cdecl] = ACTIONS(1691), + [anon_sym___clrcall] = ACTIONS(1691), + [anon_sym___stdcall] = ACTIONS(1691), + [anon_sym___fastcall] = ACTIONS(1691), + [anon_sym___thiscall] = ACTIONS(1691), + [anon_sym___vectorcall] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_signed] = ACTIONS(1691), + [anon_sym_unsigned] = ACTIONS(1691), + [anon_sym_long] = ACTIONS(1691), + [anon_sym_short] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_auto] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_inline] = ACTIONS(1691), + [anon_sym___inline] = ACTIONS(1691), + [anon_sym___inline__] = ACTIONS(1691), + [anon_sym___forceinline] = ACTIONS(1691), + [anon_sym_thread_local] = ACTIONS(1691), + [anon_sym___thread] = ACTIONS(1691), + [anon_sym_constexpr] = ACTIONS(1691), + [anon_sym_volatile] = ACTIONS(1691), + [anon_sym_restrict] = ACTIONS(1691), + [anon_sym___restrict__] = ACTIONS(1691), + [anon_sym__Atomic] = ACTIONS(1691), + [anon_sym__Noreturn] = ACTIONS(1691), + [anon_sym_noreturn] = ACTIONS(1691), + [anon_sym__Nonnull] = ACTIONS(1691), + [anon_sym_alignas] = ACTIONS(1691), + [anon_sym__Alignas] = ACTIONS(1691), + [sym_primitive_type] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1691), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_sizeof] = ACTIONS(1691), + [anon_sym___alignof__] = ACTIONS(1691), + [anon_sym___alignof] = ACTIONS(1691), + [anon_sym__alignof] = ACTIONS(1691), + [anon_sym_alignof] = ACTIONS(1691), + [anon_sym__Alignof] = ACTIONS(1691), + [anon_sym_offsetof] = ACTIONS(1691), + [anon_sym__Generic] = ACTIONS(1691), + [anon_sym_asm] = ACTIONS(1691), + [anon_sym___asm__] = ACTIONS(1691), + [anon_sym___asm] = ACTIONS(1691), + [sym_number_literal] = ACTIONS(1689), + [anon_sym_L_SQUOTE] = ACTIONS(1689), + [anon_sym_u_SQUOTE] = ACTIONS(1689), + [anon_sym_U_SQUOTE] = ACTIONS(1689), + [anon_sym_u8_SQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_L_DQUOTE] = ACTIONS(1689), + [anon_sym_u_DQUOTE] = ACTIONS(1689), + [anon_sym_U_DQUOTE] = ACTIONS(1689), + [anon_sym_u8_DQUOTE] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [anon_sym_NULL] = ACTIONS(1691), + [anon_sym_nullptr] = ACTIONS(1691), + [sym_comment] = ACTIONS(3), + }, + [STATE(374)] = { + [sym_attribute_declaration] = STATE(433), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(263), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(375)] = { + [ts_builtin_sym_end] = ACTIONS(1695), + [sym_identifier] = ACTIONS(1698), + [aux_sym_preproc_include_token1] = ACTIONS(1698), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [aux_sym_preproc_if_token1] = ACTIONS(1698), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1698), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1698), + [sym_preproc_directive] = ACTIONS(1698), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym___extension__] = ACTIONS(1698), + [anon_sym_typedef] = ACTIONS(1698), + [anon_sym_extern] = ACTIONS(1698), + [anon_sym___attribute__] = ACTIONS(1698), + [anon_sym___attribute] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1695), + [anon_sym___declspec] = ACTIONS(1698), + [anon_sym___cdecl] = ACTIONS(1698), + [anon_sym___clrcall] = ACTIONS(1698), + [anon_sym___stdcall] = ACTIONS(1698), + [anon_sym___fastcall] = ACTIONS(1698), + [anon_sym___thiscall] = ACTIONS(1698), + [anon_sym___vectorcall] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_signed] = ACTIONS(1698), + [anon_sym_unsigned] = ACTIONS(1698), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_short] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_auto] = ACTIONS(1698), + [anon_sym_register] = ACTIONS(1698), + [anon_sym_inline] = ACTIONS(1698), + [anon_sym___inline] = ACTIONS(1698), + [anon_sym___inline__] = ACTIONS(1698), + [anon_sym___forceinline] = ACTIONS(1698), + [anon_sym_thread_local] = ACTIONS(1698), + [anon_sym___thread] = ACTIONS(1698), + [anon_sym_constexpr] = ACTIONS(1698), + [anon_sym_volatile] = ACTIONS(1698), + [anon_sym_restrict] = ACTIONS(1698), + [anon_sym___restrict__] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(1698), + [anon_sym__Noreturn] = ACTIONS(1698), + [anon_sym_noreturn] = ACTIONS(1698), + [anon_sym__Nonnull] = ACTIONS(1698), + [anon_sym_alignas] = ACTIONS(1698), + [anon_sym__Alignas] = ACTIONS(1698), + [sym_primitive_type] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(1698), + [anon_sym_struct] = ACTIONS(1698), + [anon_sym_union] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_do] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [anon_sym_goto] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1695), + [anon_sym_sizeof] = ACTIONS(1698), + [anon_sym___alignof__] = ACTIONS(1698), + [anon_sym___alignof] = ACTIONS(1698), + [anon_sym__alignof] = ACTIONS(1698), + [anon_sym_alignof] = ACTIONS(1698), + [anon_sym__Alignof] = ACTIONS(1698), + [anon_sym_offsetof] = ACTIONS(1698), + [anon_sym__Generic] = ACTIONS(1698), + [anon_sym_asm] = ACTIONS(1698), + [anon_sym___asm__] = ACTIONS(1698), + [anon_sym___asm] = ACTIONS(1698), + [sym_number_literal] = ACTIONS(1695), + [anon_sym_L_SQUOTE] = ACTIONS(1695), + [anon_sym_u_SQUOTE] = ACTIONS(1695), + [anon_sym_U_SQUOTE] = ACTIONS(1695), + [anon_sym_u8_SQUOTE] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_L_DQUOTE] = ACTIONS(1695), + [anon_sym_u_DQUOTE] = ACTIONS(1695), + [anon_sym_U_DQUOTE] = ACTIONS(1695), + [anon_sym_u8_DQUOTE] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym_true] = ACTIONS(1698), + [sym_false] = ACTIONS(1698), + [anon_sym_NULL] = ACTIONS(1698), + [anon_sym_nullptr] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + }, + [STATE(376)] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(218), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1731), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_while] = ACTIONS(1740), + [anon_sym_do] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_goto] = ACTIONS(1758), + [anon_sym___try] = ACTIONS(1761), + [anon_sym___leave] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(377)] = { + [sym__type_definition_type] = STATE(1571), + [sym_type_qualifier] = STATE(1249), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1409), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1249), + [aux_sym_sized_type_specifier_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(1800), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1802), + [anon_sym_unsigned] = ACTIONS(1802), + [anon_sym_long] = ACTIONS(1802), + [anon_sym_short] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(378)] = { + [sym_attribute_declaration] = STATE(386), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(214), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(379)] = { + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___attribute] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [anon_sym__Nonnull] = ACTIONS(1512), + [anon_sym_alignas] = ACTIONS(1512), + [anon_sym__Alignas] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [anon_sym___asm] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), + [sym_comment] = ACTIONS(3), + }, + [STATE(380)] = { + [sym_attribute_declaration] = STATE(433), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(282), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(381)] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(218), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1814), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_switch] = ACTIONS(1731), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_goto] = ACTIONS(1758), + [anon_sym___try] = ACTIONS(1761), + [anon_sym___leave] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(382)] = { + [sym_attribute_declaration] = STATE(433), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(284), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(383)] = { + [sym_attribute_declaration] = STATE(397), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(225), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(397), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(384)] = { + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1834), + [aux_sym_preproc_include_token1] = ACTIONS(1834), + [aux_sym_preproc_def_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1834), + [sym_preproc_directive] = ACTIONS(1834), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_TILDE] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym___extension__] = ACTIONS(1834), + [anon_sym_typedef] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym___attribute__] = ACTIONS(1834), + [anon_sym___attribute] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1832), + [anon_sym___declspec] = ACTIONS(1834), + [anon_sym___cdecl] = ACTIONS(1834), + [anon_sym___clrcall] = ACTIONS(1834), + [anon_sym___stdcall] = ACTIONS(1834), + [anon_sym___fastcall] = ACTIONS(1834), + [anon_sym___thiscall] = ACTIONS(1834), + [anon_sym___vectorcall] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_signed] = ACTIONS(1834), + [anon_sym_unsigned] = ACTIONS(1834), + [anon_sym_long] = ACTIONS(1834), + [anon_sym_short] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_auto] = ACTIONS(1834), + [anon_sym_register] = ACTIONS(1834), + [anon_sym_inline] = ACTIONS(1834), + [anon_sym___inline] = ACTIONS(1834), + [anon_sym___inline__] = ACTIONS(1834), + [anon_sym___forceinline] = ACTIONS(1834), + [anon_sym_thread_local] = ACTIONS(1834), + [anon_sym___thread] = ACTIONS(1834), + [anon_sym_constexpr] = ACTIONS(1834), + [anon_sym_volatile] = ACTIONS(1834), + [anon_sym_restrict] = ACTIONS(1834), + [anon_sym___restrict__] = ACTIONS(1834), + [anon_sym__Atomic] = ACTIONS(1834), + [anon_sym__Noreturn] = ACTIONS(1834), + [anon_sym_noreturn] = ACTIONS(1834), + [anon_sym__Nonnull] = ACTIONS(1834), + [anon_sym_alignas] = ACTIONS(1834), + [anon_sym__Alignas] = ACTIONS(1834), + [sym_primitive_type] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_do] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_goto] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1832), + [anon_sym_PLUS_PLUS] = ACTIONS(1832), + [anon_sym_sizeof] = ACTIONS(1834), + [anon_sym___alignof__] = ACTIONS(1834), + [anon_sym___alignof] = ACTIONS(1834), + [anon_sym__alignof] = ACTIONS(1834), + [anon_sym_alignof] = ACTIONS(1834), + [anon_sym__Alignof] = ACTIONS(1834), + [anon_sym_offsetof] = ACTIONS(1834), + [anon_sym__Generic] = ACTIONS(1834), + [anon_sym_asm] = ACTIONS(1834), + [anon_sym___asm__] = ACTIONS(1834), + [anon_sym___asm] = ACTIONS(1834), + [sym_number_literal] = ACTIONS(1832), + [anon_sym_L_SQUOTE] = ACTIONS(1832), + [anon_sym_u_SQUOTE] = ACTIONS(1832), + [anon_sym_U_SQUOTE] = ACTIONS(1832), + [anon_sym_u8_SQUOTE] = ACTIONS(1832), + [anon_sym_SQUOTE] = ACTIONS(1832), + [anon_sym_L_DQUOTE] = ACTIONS(1832), + [anon_sym_u_DQUOTE] = ACTIONS(1832), + [anon_sym_U_DQUOTE] = ACTIONS(1832), + [anon_sym_u8_DQUOTE] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [sym_true] = ACTIONS(1834), + [sym_false] = ACTIONS(1834), + [anon_sym_NULL] = ACTIONS(1834), + [anon_sym_nullptr] = ACTIONS(1834), + [sym_comment] = ACTIONS(3), + }, + [STATE(385)] = { + [sym_attribute_declaration] = STATE(464), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(146), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [sym_identifier] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(805), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(386)] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(297), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(387)] = { + [sym_attribute_declaration] = STATE(387), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(136), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(387), + [sym_identifier] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym___try] = ACTIONS(1880), + [anon_sym___leave] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(388)] = { + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym___attribute] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [anon_sym__Nonnull] = ACTIONS(1516), + [anon_sym_alignas] = ACTIONS(1516), + [anon_sym__Alignas] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [anon_sym___asm] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), + }, + [STATE(389)] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(201), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(959), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(390)] = { + [sym_attribute_declaration] = STATE(464), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(153), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [sym_identifier] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(805), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(391)] = { + [ts_builtin_sym_end] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1621), + [aux_sym_preproc_include_token1] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1621), + [sym_preproc_directive] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym___extension__] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1621), + [anon_sym___attribute__] = ACTIONS(1621), + [anon_sym___attribute] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), + [anon_sym___declspec] = ACTIONS(1621), + [anon_sym___cdecl] = ACTIONS(1621), + [anon_sym___clrcall] = ACTIONS(1621), + [anon_sym___stdcall] = ACTIONS(1621), + [anon_sym___fastcall] = ACTIONS(1621), + [anon_sym___thiscall] = ACTIONS(1621), + [anon_sym___vectorcall] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1621), + [anon_sym_unsigned] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_auto] = ACTIONS(1621), + [anon_sym_register] = ACTIONS(1621), + [anon_sym_inline] = ACTIONS(1621), + [anon_sym___inline] = ACTIONS(1621), + [anon_sym___inline__] = ACTIONS(1621), + [anon_sym___forceinline] = ACTIONS(1621), + [anon_sym_thread_local] = ACTIONS(1621), + [anon_sym___thread] = ACTIONS(1621), + [anon_sym_constexpr] = ACTIONS(1621), + [anon_sym_volatile] = ACTIONS(1621), + [anon_sym_restrict] = ACTIONS(1621), + [anon_sym___restrict__] = ACTIONS(1621), + [anon_sym__Atomic] = ACTIONS(1621), + [anon_sym__Noreturn] = ACTIONS(1621), + [anon_sym_noreturn] = ACTIONS(1621), + [anon_sym__Nonnull] = ACTIONS(1621), + [anon_sym_alignas] = ACTIONS(1621), + [anon_sym__Alignas] = ACTIONS(1621), + [sym_primitive_type] = ACTIONS(1621), + [anon_sym_enum] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_case] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_goto] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1621), + [anon_sym___alignof__] = ACTIONS(1621), + [anon_sym___alignof] = ACTIONS(1621), + [anon_sym__alignof] = ACTIONS(1621), + [anon_sym_alignof] = ACTIONS(1621), + [anon_sym__Alignof] = ACTIONS(1621), + [anon_sym_offsetof] = ACTIONS(1621), + [anon_sym__Generic] = ACTIONS(1621), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym___asm__] = ACTIONS(1621), + [anon_sym___asm] = ACTIONS(1621), + [sym_number_literal] = ACTIONS(1623), + [anon_sym_L_SQUOTE] = ACTIONS(1623), + [anon_sym_u_SQUOTE] = ACTIONS(1623), + [anon_sym_U_SQUOTE] = ACTIONS(1623), + [anon_sym_u8_SQUOTE] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_L_DQUOTE] = ACTIONS(1623), + [anon_sym_u_DQUOTE] = ACTIONS(1623), + [anon_sym_U_DQUOTE] = ACTIONS(1623), + [anon_sym_u8_DQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym_true] = ACTIONS(1621), + [sym_false] = ACTIONS(1621), + [anon_sym_NULL] = ACTIONS(1621), + [anon_sym_nullptr] = ACTIONS(1621), + [sym_comment] = ACTIONS(3), + }, + [STATE(392)] = { + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym___attribute] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [anon_sym__Nonnull] = ACTIONS(1520), + [anon_sym_alignas] = ACTIONS(1520), + [anon_sym__Alignas] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [anon_sym___asm] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), + [sym_comment] = ACTIONS(3), + }, + [STATE(393)] = { + [sym_attribute_declaration] = STATE(464), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(155), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [sym_identifier] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(805), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(394)] = { + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___attribute] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [anon_sym__Nonnull] = ACTIONS(1524), + [anon_sym_alignas] = ACTIONS(1524), + [anon_sym__Alignas] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [anon_sym___asm] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + }, + [STATE(395)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(231), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(396)] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(214), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(959), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(397)] = { + [sym_attribute_declaration] = STATE(397), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(225), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(397), + [sym_identifier] = ACTIONS(1886), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_switch] = ACTIONS(1898), + [anon_sym_case] = ACTIONS(1901), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_goto] = ACTIONS(1925), + [anon_sym___try] = ACTIONS(1928), + [anon_sym___leave] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(398)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(242), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(399)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(244), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(400)] = { + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1528), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym___attribute] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [anon_sym__Nonnull] = ACTIONS(1528), + [anon_sym_alignas] = ACTIONS(1528), + [anon_sym__Alignas] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [anon_sym___asm] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), + [sym_comment] = ACTIONS(3), + }, + [STATE(401)] = { + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1532), + [aux_sym_preproc_include_token1] = ACTIONS(1532), + [aux_sym_preproc_def_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1532), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym___extension__] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym___attribute__] = ACTIONS(1532), + [anon_sym___attribute] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym___declspec] = ACTIONS(1532), + [anon_sym___cdecl] = ACTIONS(1532), + [anon_sym___clrcall] = ACTIONS(1532), + [anon_sym___stdcall] = ACTIONS(1532), + [anon_sym___fastcall] = ACTIONS(1532), + [anon_sym___thiscall] = ACTIONS(1532), + [anon_sym___vectorcall] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_signed] = ACTIONS(1532), + [anon_sym_unsigned] = ACTIONS(1532), + [anon_sym_long] = ACTIONS(1532), + [anon_sym_short] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_auto] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_inline] = ACTIONS(1532), + [anon_sym___inline] = ACTIONS(1532), + [anon_sym___inline__] = ACTIONS(1532), + [anon_sym___forceinline] = ACTIONS(1532), + [anon_sym_thread_local] = ACTIONS(1532), + [anon_sym___thread] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1532), + [anon_sym_volatile] = ACTIONS(1532), + [anon_sym_restrict] = ACTIONS(1532), + [anon_sym___restrict__] = ACTIONS(1532), + [anon_sym__Atomic] = ACTIONS(1532), + [anon_sym__Noreturn] = ACTIONS(1532), + [anon_sym_noreturn] = ACTIONS(1532), + [anon_sym__Nonnull] = ACTIONS(1532), + [anon_sym_alignas] = ACTIONS(1532), + [anon_sym__Alignas] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_case] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_goto] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1532), + [anon_sym__Generic] = ACTIONS(1532), + [anon_sym_asm] = ACTIONS(1532), + [anon_sym___asm__] = ACTIONS(1532), + [anon_sym___asm] = ACTIONS(1532), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_L_SQUOTE] = ACTIONS(1534), + [anon_sym_u_SQUOTE] = ACTIONS(1534), + [anon_sym_U_SQUOTE] = ACTIONS(1534), + [anon_sym_u8_SQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1532), + [sym_false] = ACTIONS(1532), + [anon_sym_NULL] = ACTIONS(1532), + [anon_sym_nullptr] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + }, + [STATE(402)] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym___attribute] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [anon_sym__Nonnull] = ACTIONS(1476), + [anon_sym_alignas] = ACTIONS(1476), + [anon_sym__Alignas] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [anon_sym___asm] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [STATE(403)] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(201), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(404)] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(218), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1934), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(405)] = { + [sym_attribute_declaration] = STATE(423), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(146), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(406)] = { + [sym_attribute_declaration] = STATE(459), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(297), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(459), + [sym_identifier] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(407)] = { + [sym_attribute_declaration] = STATE(407), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(136), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1938), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym___try] = ACTIONS(1880), + [anon_sym___leave] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(408)] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(214), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(409)] = { + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym___attribute__] = ACTIONS(1536), + [anon_sym___attribute] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym___declspec] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1536), + [anon_sym_unsigned] = ACTIONS(1536), + [anon_sym_long] = ACTIONS(1536), + [anon_sym_short] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(1536), + [anon_sym___inline] = ACTIONS(1536), + [anon_sym___inline__] = ACTIONS(1536), + [anon_sym___forceinline] = ACTIONS(1536), + [anon_sym_thread_local] = ACTIONS(1536), + [anon_sym___thread] = ACTIONS(1536), + [anon_sym_constexpr] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1536), + [anon_sym_restrict] = ACTIONS(1536), + [anon_sym___restrict__] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1536), + [anon_sym__Noreturn] = ACTIONS(1536), + [anon_sym_noreturn] = ACTIONS(1536), + [anon_sym__Nonnull] = ACTIONS(1536), + [anon_sym_alignas] = ACTIONS(1536), + [anon_sym__Alignas] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1536), + [anon_sym___alignof__] = ACTIONS(1536), + [anon_sym___alignof] = ACTIONS(1536), + [anon_sym__alignof] = ACTIONS(1536), + [anon_sym_alignof] = ACTIONS(1536), + [anon_sym__Alignof] = ACTIONS(1536), + [anon_sym_offsetof] = ACTIONS(1536), + [anon_sym__Generic] = ACTIONS(1536), + [anon_sym_asm] = ACTIONS(1536), + [anon_sym___asm__] = ACTIONS(1536), + [anon_sym___asm] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1538), + [anon_sym_L_SQUOTE] = ACTIONS(1538), + [anon_sym_u_SQUOTE] = ACTIONS(1538), + [anon_sym_U_SQUOTE] = ACTIONS(1538), + [anon_sym_u8_SQUOTE] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_L_DQUOTE] = ACTIONS(1538), + [anon_sym_u_DQUOTE] = ACTIONS(1538), + [anon_sym_U_DQUOTE] = ACTIONS(1538), + [anon_sym_u8_DQUOTE] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [anon_sym_NULL] = ACTIONS(1536), + [anon_sym_nullptr] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + }, + [STATE(410)] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(297), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1971), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1995), + [anon_sym___try] = ACTIONS(1998), + [anon_sym___leave] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(411)] = { + [ts_builtin_sym_end] = ACTIONS(1627), + [sym_identifier] = ACTIONS(1625), + [aux_sym_preproc_include_token1] = ACTIONS(1625), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [aux_sym_preproc_if_token1] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), + [sym_preproc_directive] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym___extension__] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym___attribute] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [anon_sym___declspec] = ACTIONS(1625), + [anon_sym___cdecl] = ACTIONS(1625), + [anon_sym___clrcall] = ACTIONS(1625), + [anon_sym___stdcall] = ACTIONS(1625), + [anon_sym___fastcall] = ACTIONS(1625), + [anon_sym___thiscall] = ACTIONS(1625), + [anon_sym___vectorcall] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_auto] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym___inline] = ACTIONS(1625), + [anon_sym___inline__] = ACTIONS(1625), + [anon_sym___forceinline] = ACTIONS(1625), + [anon_sym_thread_local] = ACTIONS(1625), + [anon_sym___thread] = ACTIONS(1625), + [anon_sym_constexpr] = ACTIONS(1625), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_restrict] = ACTIONS(1625), + [anon_sym___restrict__] = ACTIONS(1625), + [anon_sym__Atomic] = ACTIONS(1625), + [anon_sym__Noreturn] = ACTIONS(1625), + [anon_sym_noreturn] = ACTIONS(1625), + [anon_sym__Nonnull] = ACTIONS(1625), + [anon_sym_alignas] = ACTIONS(1625), + [anon_sym__Alignas] = ACTIONS(1625), + [sym_primitive_type] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_case] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_goto] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_sizeof] = ACTIONS(1625), + [anon_sym___alignof__] = ACTIONS(1625), + [anon_sym___alignof] = ACTIONS(1625), + [anon_sym__alignof] = ACTIONS(1625), + [anon_sym_alignof] = ACTIONS(1625), + [anon_sym__Alignof] = ACTIONS(1625), + [anon_sym_offsetof] = ACTIONS(1625), + [anon_sym__Generic] = ACTIONS(1625), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym___asm__] = ACTIONS(1625), + [anon_sym___asm] = ACTIONS(1625), + [sym_number_literal] = ACTIONS(1627), + [anon_sym_L_SQUOTE] = ACTIONS(1627), + [anon_sym_u_SQUOTE] = ACTIONS(1627), + [anon_sym_U_SQUOTE] = ACTIONS(1627), + [anon_sym_u8_SQUOTE] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_L_DQUOTE] = ACTIONS(1627), + [anon_sym_u_DQUOTE] = ACTIONS(1627), + [anon_sym_U_DQUOTE] = ACTIONS(1627), + [anon_sym_u8_DQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [anon_sym_NULL] = ACTIONS(1625), + [anon_sym_nullptr] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + }, + [STATE(412)] = { + [sym_attribute_declaration] = STATE(423), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(153), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(413)] = { + [sym_attribute_declaration] = STATE(423), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(155), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(414)] = { + [ts_builtin_sym_end] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1641), + [aux_sym_preproc_include_token1] = ACTIONS(1641), + [aux_sym_preproc_def_token1] = ACTIONS(1641), + [aux_sym_preproc_if_token1] = ACTIONS(1641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), + [sym_preproc_directive] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym___extension__] = ACTIONS(1641), + [anon_sym_typedef] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym___attribute__] = ACTIONS(1641), + [anon_sym___attribute] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1643), + [anon_sym___declspec] = ACTIONS(1641), + [anon_sym___cdecl] = ACTIONS(1641), + [anon_sym___clrcall] = ACTIONS(1641), + [anon_sym___stdcall] = ACTIONS(1641), + [anon_sym___fastcall] = ACTIONS(1641), + [anon_sym___thiscall] = ACTIONS(1641), + [anon_sym___vectorcall] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1641), + [anon_sym_unsigned] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_auto] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_inline] = ACTIONS(1641), + [anon_sym___inline] = ACTIONS(1641), + [anon_sym___inline__] = ACTIONS(1641), + [anon_sym___forceinline] = ACTIONS(1641), + [anon_sym_thread_local] = ACTIONS(1641), + [anon_sym___thread] = ACTIONS(1641), + [anon_sym_constexpr] = ACTIONS(1641), + [anon_sym_volatile] = ACTIONS(1641), + [anon_sym_restrict] = ACTIONS(1641), + [anon_sym___restrict__] = ACTIONS(1641), + [anon_sym__Atomic] = ACTIONS(1641), + [anon_sym__Noreturn] = ACTIONS(1641), + [anon_sym_noreturn] = ACTIONS(1641), + [anon_sym__Nonnull] = ACTIONS(1641), + [anon_sym_alignas] = ACTIONS(1641), + [anon_sym__Alignas] = ACTIONS(1641), + [sym_primitive_type] = ACTIONS(1641), + [anon_sym_enum] = ACTIONS(1641), + [anon_sym_struct] = ACTIONS(1641), + [anon_sym_union] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_case] = ACTIONS(1641), + [anon_sym_default] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_goto] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_sizeof] = ACTIONS(1641), + [anon_sym___alignof__] = ACTIONS(1641), + [anon_sym___alignof] = ACTIONS(1641), + [anon_sym__alignof] = ACTIONS(1641), + [anon_sym_alignof] = ACTIONS(1641), + [anon_sym__Alignof] = ACTIONS(1641), + [anon_sym_offsetof] = ACTIONS(1641), + [anon_sym__Generic] = ACTIONS(1641), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym___asm__] = ACTIONS(1641), + [anon_sym___asm] = ACTIONS(1641), + [sym_number_literal] = ACTIONS(1643), + [anon_sym_L_SQUOTE] = ACTIONS(1643), + [anon_sym_u_SQUOTE] = ACTIONS(1643), + [anon_sym_U_SQUOTE] = ACTIONS(1643), + [anon_sym_u8_SQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_L_DQUOTE] = ACTIONS(1643), + [anon_sym_u_DQUOTE] = ACTIONS(1643), + [anon_sym_U_DQUOTE] = ACTIONS(1643), + [anon_sym_u8_DQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [anon_sym_NULL] = ACTIONS(1641), + [anon_sym_nullptr] = ACTIONS(1641), + [sym_comment] = ACTIONS(3), + }, + [STATE(415)] = { + [ts_builtin_sym_end] = ACTIONS(1631), + [sym_identifier] = ACTIONS(1629), + [aux_sym_preproc_include_token1] = ACTIONS(1629), + [aux_sym_preproc_def_token1] = ACTIONS(1629), + [aux_sym_preproc_if_token1] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), + [sym_preproc_directive] = ACTIONS(1629), + [anon_sym_LPAREN2] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym___extension__] = ACTIONS(1629), + [anon_sym_typedef] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym___attribute__] = ACTIONS(1629), + [anon_sym___attribute] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), + [anon_sym___declspec] = ACTIONS(1629), + [anon_sym___cdecl] = ACTIONS(1629), + [anon_sym___clrcall] = ACTIONS(1629), + [anon_sym___stdcall] = ACTIONS(1629), + [anon_sym___fastcall] = ACTIONS(1629), + [anon_sym___thiscall] = ACTIONS(1629), + [anon_sym___vectorcall] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_signed] = ACTIONS(1629), + [anon_sym_unsigned] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_auto] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_inline] = ACTIONS(1629), + [anon_sym___inline] = ACTIONS(1629), + [anon_sym___inline__] = ACTIONS(1629), + [anon_sym___forceinline] = ACTIONS(1629), + [anon_sym_thread_local] = ACTIONS(1629), + [anon_sym___thread] = ACTIONS(1629), + [anon_sym_constexpr] = ACTIONS(1629), + [anon_sym_volatile] = ACTIONS(1629), + [anon_sym_restrict] = ACTIONS(1629), + [anon_sym___restrict__] = ACTIONS(1629), + [anon_sym__Atomic] = ACTIONS(1629), + [anon_sym__Noreturn] = ACTIONS(1629), + [anon_sym_noreturn] = ACTIONS(1629), + [anon_sym__Nonnull] = ACTIONS(1629), + [anon_sym_alignas] = ACTIONS(1629), + [anon_sym__Alignas] = ACTIONS(1629), + [sym_primitive_type] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_goto] = ACTIONS(1629), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_sizeof] = ACTIONS(1629), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1629), + [anon_sym__Generic] = ACTIONS(1629), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym___asm__] = ACTIONS(1629), + [anon_sym___asm] = ACTIONS(1629), + [sym_number_literal] = ACTIONS(1631), + [anon_sym_L_SQUOTE] = ACTIONS(1631), + [anon_sym_u_SQUOTE] = ACTIONS(1631), + [anon_sym_U_SQUOTE] = ACTIONS(1631), + [anon_sym_u8_SQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [anon_sym_NULL] = ACTIONS(1629), + [anon_sym_nullptr] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + }, + [STATE(416)] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym___attribute] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [anon_sym__Nonnull] = ACTIONS(1480), + [anon_sym_alignas] = ACTIONS(1480), + [anon_sym__Alignas] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [anon_sym___asm] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [STATE(417)] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(511), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(959), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(418)] = { + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym___attribute] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [anon_sym__Nonnull] = ACTIONS(1484), + [anon_sym_alignas] = ACTIONS(1484), + [anon_sym__Alignas] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [anon_sym___asm] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [STATE(419)] = { + [sym_attribute_declaration] = STATE(464), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(127), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [sym_identifier] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(805), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(420)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(196), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(421)] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(254), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(959), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(422)] = { + [ts_builtin_sym_end] = ACTIONS(1635), + [sym_identifier] = ACTIONS(1633), + [aux_sym_preproc_include_token1] = ACTIONS(1633), + [aux_sym_preproc_def_token1] = ACTIONS(1633), + [aux_sym_preproc_if_token1] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), + [sym_preproc_directive] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym___extension__] = ACTIONS(1633), + [anon_sym_typedef] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym___attribute__] = ACTIONS(1633), + [anon_sym___attribute] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), + [anon_sym___declspec] = ACTIONS(1633), + [anon_sym___cdecl] = ACTIONS(1633), + [anon_sym___clrcall] = ACTIONS(1633), + [anon_sym___stdcall] = ACTIONS(1633), + [anon_sym___fastcall] = ACTIONS(1633), + [anon_sym___thiscall] = ACTIONS(1633), + [anon_sym___vectorcall] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_signed] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_auto] = ACTIONS(1633), + [anon_sym_register] = ACTIONS(1633), + [anon_sym_inline] = ACTIONS(1633), + [anon_sym___inline] = ACTIONS(1633), + [anon_sym___inline__] = ACTIONS(1633), + [anon_sym___forceinline] = ACTIONS(1633), + [anon_sym_thread_local] = ACTIONS(1633), + [anon_sym___thread] = ACTIONS(1633), + [anon_sym_constexpr] = ACTIONS(1633), + [anon_sym_volatile] = ACTIONS(1633), + [anon_sym_restrict] = ACTIONS(1633), + [anon_sym___restrict__] = ACTIONS(1633), + [anon_sym__Atomic] = ACTIONS(1633), + [anon_sym__Noreturn] = ACTIONS(1633), + [anon_sym_noreturn] = ACTIONS(1633), + [anon_sym__Nonnull] = ACTIONS(1633), + [anon_sym_alignas] = ACTIONS(1633), + [anon_sym__Alignas] = ACTIONS(1633), + [sym_primitive_type] = ACTIONS(1633), + [anon_sym_enum] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1633), + [anon_sym_union] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_case] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_goto] = ACTIONS(1633), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(1633), + [anon_sym___alignof__] = ACTIONS(1633), + [anon_sym___alignof] = ACTIONS(1633), + [anon_sym__alignof] = ACTIONS(1633), + [anon_sym_alignof] = ACTIONS(1633), + [anon_sym__Alignof] = ACTIONS(1633), + [anon_sym_offsetof] = ACTIONS(1633), + [anon_sym__Generic] = ACTIONS(1633), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym___asm__] = ACTIONS(1633), + [anon_sym___asm] = ACTIONS(1633), + [sym_number_literal] = ACTIONS(1635), + [anon_sym_L_SQUOTE] = ACTIONS(1635), + [anon_sym_u_SQUOTE] = ACTIONS(1635), + [anon_sym_U_SQUOTE] = ACTIONS(1635), + [anon_sym_u8_SQUOTE] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_L_DQUOTE] = ACTIONS(1635), + [anon_sym_u_DQUOTE] = ACTIONS(1635), + [anon_sym_U_DQUOTE] = ACTIONS(1635), + [anon_sym_u8_DQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_true] = ACTIONS(1633), + [sym_false] = ACTIONS(1633), + [anon_sym_NULL] = ACTIONS(1633), + [anon_sym_nullptr] = ACTIONS(1633), + [sym_comment] = ACTIONS(3), + }, + [STATE(423)] = { + [sym_attribute_declaration] = STATE(407), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(136), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(145), + [anon_sym_default] = ACTIONS(147), + [anon_sym_while] = ACTIONS(149), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(153), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(424)] = { + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___attribute] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [anon_sym__Nonnull] = ACTIONS(1488), + [anon_sym_alignas] = ACTIONS(1488), + [anon_sym__Alignas] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [anon_sym___asm] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + }, + [STATE(425)] = { + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym___attribute] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [anon_sym__Nonnull] = ACTIONS(1492), + [anon_sym_alignas] = ACTIONS(1492), + [anon_sym__Alignas] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [anon_sym___asm] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + }, + [STATE(426)] = { + [sym_attribute_declaration] = STATE(437), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(231), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [sym_identifier] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(448), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(427)] = { + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1554), + [aux_sym_preproc_include_token1] = ACTIONS(1554), + [aux_sym_preproc_def_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1554), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1554), + [anon_sym_typedef] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym___attribute__] = ACTIONS(1554), + [anon_sym___attribute] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), + [anon_sym___declspec] = ACTIONS(1554), + [anon_sym___cdecl] = ACTIONS(1554), + [anon_sym___clrcall] = ACTIONS(1554), + [anon_sym___stdcall] = ACTIONS(1554), + [anon_sym___fastcall] = ACTIONS(1554), + [anon_sym___thiscall] = ACTIONS(1554), + [anon_sym___vectorcall] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_signed] = ACTIONS(1554), + [anon_sym_unsigned] = ACTIONS(1554), + [anon_sym_long] = ACTIONS(1554), + [anon_sym_short] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_auto] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_inline] = ACTIONS(1554), + [anon_sym___inline] = ACTIONS(1554), + [anon_sym___inline__] = ACTIONS(1554), + [anon_sym___forceinline] = ACTIONS(1554), + [anon_sym_thread_local] = ACTIONS(1554), + [anon_sym___thread] = ACTIONS(1554), + [anon_sym_constexpr] = ACTIONS(1554), + [anon_sym_volatile] = ACTIONS(1554), + [anon_sym_restrict] = ACTIONS(1554), + [anon_sym___restrict__] = ACTIONS(1554), + [anon_sym__Atomic] = ACTIONS(1554), + [anon_sym__Noreturn] = ACTIONS(1554), + [anon_sym_noreturn] = ACTIONS(1554), + [anon_sym__Nonnull] = ACTIONS(1554), + [anon_sym_alignas] = ACTIONS(1554), + [anon_sym__Alignas] = ACTIONS(1554), + [sym_primitive_type] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_goto] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_sizeof] = ACTIONS(1554), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1554), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1554), + [anon_sym___asm__] = ACTIONS(1554), + [anon_sym___asm] = ACTIONS(1554), + [sym_number_literal] = ACTIONS(1556), + [anon_sym_L_SQUOTE] = ACTIONS(1556), + [anon_sym_u_SQUOTE] = ACTIONS(1556), + [anon_sym_U_SQUOTE] = ACTIONS(1556), + [anon_sym_u8_SQUOTE] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_L_DQUOTE] = ACTIONS(1556), + [anon_sym_u_DQUOTE] = ACTIONS(1556), + [anon_sym_U_DQUOTE] = ACTIONS(1556), + [anon_sym_u8_DQUOTE] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [anon_sym_NULL] = ACTIONS(1554), + [anon_sym_nullptr] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + }, + [STATE(428)] = { + [sym_attribute_declaration] = STATE(428), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(225), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(2006), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_switch] = ACTIONS(1898), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_goto] = ACTIONS(1925), + [anon_sym___try] = ACTIONS(1928), + [anon_sym___leave] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(429)] = { + [ts_builtin_sym_end] = ACTIONS(1560), + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym___attribute] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [anon_sym__Nonnull] = ACTIONS(1558), + [anon_sym_alignas] = ACTIONS(1558), + [anon_sym__Alignas] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(1560), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [anon_sym___asm] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1560), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1560), + [anon_sym_u_DQUOTE] = ACTIONS(1560), + [anon_sym_U_DQUOTE] = ACTIONS(1560), + [anon_sym_u8_DQUOTE] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), + [sym_comment] = ACTIONS(3), + }, + [STATE(430)] = { + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_identifier] = ACTIONS(1562), + [aux_sym_preproc_include_token1] = ACTIONS(1562), + [aux_sym_preproc_def_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1562), + [sym_preproc_directive] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym___extension__] = ACTIONS(1562), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym___attribute__] = ACTIONS(1562), + [anon_sym___attribute] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym___declspec] = ACTIONS(1562), + [anon_sym___cdecl] = ACTIONS(1562), + [anon_sym___clrcall] = ACTIONS(1562), + [anon_sym___stdcall] = ACTIONS(1562), + [anon_sym___fastcall] = ACTIONS(1562), + [anon_sym___thiscall] = ACTIONS(1562), + [anon_sym___vectorcall] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1562), + [anon_sym_unsigned] = ACTIONS(1562), + [anon_sym_long] = ACTIONS(1562), + [anon_sym_short] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_auto] = ACTIONS(1562), + [anon_sym_register] = ACTIONS(1562), + [anon_sym_inline] = ACTIONS(1562), + [anon_sym___inline] = ACTIONS(1562), + [anon_sym___inline__] = ACTIONS(1562), + [anon_sym___forceinline] = ACTIONS(1562), + [anon_sym_thread_local] = ACTIONS(1562), + [anon_sym___thread] = ACTIONS(1562), + [anon_sym_constexpr] = ACTIONS(1562), + [anon_sym_volatile] = ACTIONS(1562), + [anon_sym_restrict] = ACTIONS(1562), + [anon_sym___restrict__] = ACTIONS(1562), + [anon_sym__Atomic] = ACTIONS(1562), + [anon_sym__Noreturn] = ACTIONS(1562), + [anon_sym_noreturn] = ACTIONS(1562), + [anon_sym__Nonnull] = ACTIONS(1562), + [anon_sym_alignas] = ACTIONS(1562), + [anon_sym__Alignas] = ACTIONS(1562), + [sym_primitive_type] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_goto] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(1562), + [anon_sym___alignof] = ACTIONS(1562), + [anon_sym__alignof] = ACTIONS(1562), + [anon_sym_alignof] = ACTIONS(1562), + [anon_sym__Alignof] = ACTIONS(1562), + [anon_sym_offsetof] = ACTIONS(1562), + [anon_sym__Generic] = ACTIONS(1562), + [anon_sym_asm] = ACTIONS(1562), + [anon_sym___asm__] = ACTIONS(1562), + [anon_sym___asm] = ACTIONS(1562), + [sym_number_literal] = ACTIONS(1564), + [anon_sym_L_SQUOTE] = ACTIONS(1564), + [anon_sym_u_SQUOTE] = ACTIONS(1564), + [anon_sym_U_SQUOTE] = ACTIONS(1564), + [anon_sym_u8_SQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_L_DQUOTE] = ACTIONS(1564), + [anon_sym_u_DQUOTE] = ACTIONS(1564), + [anon_sym_U_DQUOTE] = ACTIONS(1564), + [anon_sym_u8_DQUOTE] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [anon_sym_NULL] = ACTIONS(1562), + [anon_sym_nullptr] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + }, + [STATE(431)] = { + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(297), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(2027), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym___try] = ACTIONS(2051), + [anon_sym___leave] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(432)] = { + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym___attribute] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [anon_sym__Nonnull] = ACTIONS(1496), + [anon_sym_alignas] = ACTIONS(1496), + [anon_sym__Alignas] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [anon_sym___asm] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + }, + [STATE(433)] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(218), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(434)] = { + [ts_builtin_sym_end] = ACTIONS(2054), + [sym_identifier] = ACTIONS(2056), + [aux_sym_preproc_include_token1] = ACTIONS(2056), + [aux_sym_preproc_def_token1] = ACTIONS(2056), + [aux_sym_preproc_if_token1] = ACTIONS(2056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2056), + [sym_preproc_directive] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_PLUS] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym___extension__] = ACTIONS(2056), + [anon_sym_typedef] = ACTIONS(2056), + [anon_sym_extern] = ACTIONS(2056), + [anon_sym___attribute__] = ACTIONS(2056), + [anon_sym___attribute] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2054), + [anon_sym___declspec] = ACTIONS(2056), + [anon_sym___cdecl] = ACTIONS(2056), + [anon_sym___clrcall] = ACTIONS(2056), + [anon_sym___stdcall] = ACTIONS(2056), + [anon_sym___fastcall] = ACTIONS(2056), + [anon_sym___thiscall] = ACTIONS(2056), + [anon_sym___vectorcall] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_signed] = ACTIONS(2056), + [anon_sym_unsigned] = ACTIONS(2056), + [anon_sym_long] = ACTIONS(2056), + [anon_sym_short] = ACTIONS(2056), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_auto] = ACTIONS(2056), + [anon_sym_register] = ACTIONS(2056), + [anon_sym_inline] = ACTIONS(2056), + [anon_sym___inline] = ACTIONS(2056), + [anon_sym___inline__] = ACTIONS(2056), + [anon_sym___forceinline] = ACTIONS(2056), + [anon_sym_thread_local] = ACTIONS(2056), + [anon_sym___thread] = ACTIONS(2056), + [anon_sym_constexpr] = ACTIONS(2056), + [anon_sym_volatile] = ACTIONS(2056), + [anon_sym_restrict] = ACTIONS(2056), + [anon_sym___restrict__] = ACTIONS(2056), + [anon_sym__Atomic] = ACTIONS(2056), + [anon_sym__Noreturn] = ACTIONS(2056), + [anon_sym_noreturn] = ACTIONS(2056), + [anon_sym__Nonnull] = ACTIONS(2056), + [anon_sym_alignas] = ACTIONS(2056), + [anon_sym__Alignas] = ACTIONS(2056), + [sym_primitive_type] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_switch] = ACTIONS(2056), + [anon_sym_case] = ACTIONS(2056), + [anon_sym_default] = ACTIONS(2056), + [anon_sym_while] = ACTIONS(2056), + [anon_sym_do] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_return] = ACTIONS(2056), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_goto] = ACTIONS(2056), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2056), + [anon_sym___alignof__] = ACTIONS(2056), + [anon_sym___alignof] = ACTIONS(2056), + [anon_sym__alignof] = ACTIONS(2056), + [anon_sym_alignof] = ACTIONS(2056), + [anon_sym__Alignof] = ACTIONS(2056), + [anon_sym_offsetof] = ACTIONS(2056), + [anon_sym__Generic] = ACTIONS(2056), + [anon_sym_asm] = ACTIONS(2056), + [anon_sym___asm__] = ACTIONS(2056), + [anon_sym___asm] = ACTIONS(2056), + [sym_number_literal] = ACTIONS(2054), + [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(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2056), + [sym_false] = ACTIONS(2056), + [anon_sym_NULL] = ACTIONS(2056), + [anon_sym_nullptr] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + }, + [STATE(435)] = { + [sym_attribute_declaration] = STATE(437), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(244), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [sym_identifier] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(448), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(436)] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(198), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(2058), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(437)] = { + [sym_attribute_declaration] = STATE(428), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(225), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(448), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(438)] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(254), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(2058), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(439)] = { + [sym_attribute_declaration] = STATE(386), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(254), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(440)] = { + [sym_attribute_declaration] = STATE(440), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(297), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(2063), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1995), + [anon_sym___try] = ACTIONS(1998), + [anon_sym___leave] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(441)] = { + [sym_attribute_declaration] = STATE(404), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(282), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1934), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(442)] = { + [sym_attribute_declaration] = STATE(440), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(297), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(2058), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(443)] = { + [sym_attribute_declaration] = STATE(444), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(2128), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(959), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(444)] = { + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(297), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(959), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(971), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(983), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(445)] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(338), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(446)] = { + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___attribute] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [anon_sym__Nonnull] = ACTIONS(1500), + [anon_sym_alignas] = ACTIONS(1500), + [anon_sym__Alignas] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [anon_sym___asm] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [STATE(447)] = { + [sym_attribute_declaration] = STATE(464), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(126), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(464), + [sym_identifier] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(805), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(448)] = { + [sym_attribute_declaration] = STATE(433), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(197), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(449)] = { + [sym_attribute_declaration] = STATE(404), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(284), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1934), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(450)] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(254), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(975), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(979), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(981), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(451)] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(201), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(2058), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(452)] = { + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym___attribute] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [anon_sym__Nonnull] = ACTIONS(1504), + [anon_sym_alignas] = ACTIONS(1504), + [anon_sym__Alignas] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [anon_sym___asm] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), + [sym_comment] = ACTIONS(3), + }, + [STATE(453)] = { + [sym_expression] = STATE(1047), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(898), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_sizeof] = ACTIONS(1669), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1671), + [anon_sym_nullptr] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + }, + [STATE(454)] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(214), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(2058), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(995), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(455)] = { + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___attribute] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [anon_sym__Nonnull] = ACTIONS(1508), + [anon_sym_alignas] = ACTIONS(1508), + [anon_sym__Alignas] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [anon_sym___asm] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + }, + [STATE(456)] = { + [sym__type_definition_type] = STATE(1568), + [sym_type_qualifier] = STATE(1249), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1409), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1249), + [aux_sym_sized_type_specifier_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(1800), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1802), + [anon_sym_unsigned] = ACTIONS(1802), + [anon_sym_long] = ACTIONS(1802), + [anon_sym_short] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(457)] = { + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1540), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym___extension__] = ACTIONS(1540), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1540), + [anon_sym___attribute] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1542), + [anon_sym___declspec] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_signed] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_inline] = ACTIONS(1540), + [anon_sym___inline] = ACTIONS(1540), + [anon_sym___inline__] = ACTIONS(1540), + [anon_sym___forceinline] = ACTIONS(1540), + [anon_sym_thread_local] = ACTIONS(1540), + [anon_sym___thread] = ACTIONS(1540), + [anon_sym_constexpr] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym___restrict__] = ACTIONS(1540), + [anon_sym__Atomic] = ACTIONS(1540), + [anon_sym__Noreturn] = ACTIONS(1540), + [anon_sym_noreturn] = ACTIONS(1540), + [anon_sym__Nonnull] = ACTIONS(1540), + [anon_sym_alignas] = ACTIONS(1540), + [anon_sym__Alignas] = ACTIONS(1540), + [sym_primitive_type] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_sizeof] = ACTIONS(1540), + [anon_sym___alignof__] = ACTIONS(1540), + [anon_sym___alignof] = ACTIONS(1540), + [anon_sym__alignof] = ACTIONS(1540), + [anon_sym_alignof] = ACTIONS(1540), + [anon_sym__Alignof] = ACTIONS(1540), + [anon_sym_offsetof] = ACTIONS(1540), + [anon_sym__Generic] = ACTIONS(1540), + [anon_sym_asm] = ACTIONS(1540), + [anon_sym___asm__] = ACTIONS(1540), + [anon_sym___asm] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_L_SQUOTE] = ACTIONS(1542), + [anon_sym_u_SQUOTE] = ACTIONS(1542), + [anon_sym_U_SQUOTE] = ACTIONS(1542), + [anon_sym_u8_SQUOTE] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_L_DQUOTE] = ACTIONS(1542), + [anon_sym_u_DQUOTE] = ACTIONS(1542), + [anon_sym_U_DQUOTE] = ACTIONS(1542), + [anon_sym_u8_DQUOTE] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym_true] = ACTIONS(1540), + [sym_false] = ACTIONS(1540), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + }, + [STATE(458)] = { + [sym__type_definition_type] = STATE(1565), + [sym_type_qualifier] = STATE(1249), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1409), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1249), + [aux_sym_sized_type_specifier_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(1800), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1802), + [anon_sym_unsigned] = ACTIONS(1802), + [anon_sym_long] = ACTIONS(1802), + [anon_sym_short] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(459)] = { + [sym_attribute_declaration] = STATE(459), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(297), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(459), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym___try] = ACTIONS(1998), + [anon_sym___leave] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1770), + [anon_sym___alignof__] = ACTIONS(1773), + [anon_sym___alignof] = ACTIONS(1773), + [anon_sym__alignof] = ACTIONS(1773), + [anon_sym_alignof] = ACTIONS(1773), + [anon_sym__Alignof] = ACTIONS(1773), + [anon_sym_offsetof] = ACTIONS(1776), + [anon_sym__Generic] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + }, + [STATE(460)] = { + [sym__type_definition_type] = STATE(1569), + [sym_type_qualifier] = STATE(1249), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1409), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1249), + [aux_sym_sized_type_specifier_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(1800), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1802), + [anon_sym_unsigned] = ACTIONS(1802), + [anon_sym_long] = ACTIONS(1802), + [anon_sym_short] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(461)] = { + [sym_attribute_declaration] = STATE(433), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(200), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(462)] = { + [sym_attribute_declaration] = STATE(386), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(201), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(1275), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2160), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(999), + [anon_sym___leave] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(463)] = { + [sym_attribute_declaration] = STATE(404), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_statement] = STATE(263), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(249), + [sym_expression] = STATE(1347), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2043), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1934), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_if] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_case] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_while] = ACTIONS(400), + [anon_sym_do] = ACTIONS(402), + [anon_sym_for] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_break] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [anon_sym___try] = ACTIONS(414), + [anon_sym___leave] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(464)] = { + [sym_attribute_declaration] = STATE(387), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_statement] = STATE(136), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_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(1301), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2217), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(387), + [sym_identifier] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_if] = ACTIONS(805), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(151), + [anon_sym_for] = ACTIONS(809), + [anon_sym_return] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_goto] = ACTIONS(161), + [anon_sym___try] = ACTIONS(163), + [anon_sym___leave] = ACTIONS(165), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(465)] = { + [sym_attribute_declaration] = STATE(437), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_statement] = STATE(242), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym_expression] = STATE(1310), + [sym__string] = STATE(586), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [sym_identifier] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_if] = ACTIONS(442), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(448), + [anon_sym_while] = ACTIONS(450), + [anon_sym_do] = ACTIONS(452), + [anon_sym_for] = ACTIONS(454), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_goto] = ACTIONS(462), + [anon_sym___try] = ACTIONS(464), + [anon_sym___leave] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(466)] = { + [sym_expression] = STATE(1051), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(898), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(941), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(961), + [aux_sym_preproc_if_token2] = ACTIONS(961), + [aux_sym_preproc_else_token1] = ACTIONS(961), + [aux_sym_preproc_elif_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token2] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_sizeof] = ACTIONS(1683), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1671), + [anon_sym_nullptr] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + }, + [STATE(467)] = { + [sym_expression] = STATE(1214), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1081), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1081), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1081), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(941), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(961), + [aux_sym_preproc_if_token2] = ACTIONS(961), + [aux_sym_preproc_else_token1] = ACTIONS(961), + [aux_sym_preproc_elif_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token2] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_sizeof] = ACTIONS(2109), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [STATE(468)] = { + [sym_gnu_asm_qualifier] = STATE(1756), + [aux_sym_gnu_asm_expression_repeat1] = STATE(1756), + [sym_identifier] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [aux_sym_preproc_if_token2] = ACTIONS(961), + [aux_sym_preproc_else_token1] = ACTIONS(961), + [aux_sym_preproc_elif_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token2] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(2113), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(2113), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_goto] = ACTIONS(2113), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym___volatile__] = ACTIONS(2113), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(469)] = { + [sym_expression] = STATE(1243), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1088), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1088), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1088), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1294), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [STATE(470)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2108), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(471)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2202), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(472)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2177), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(473)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2080), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(474)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2156), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(475)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2089), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(476)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2179), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(477)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2238), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(478)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2257), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(479)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2064), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(480)] = { + [sym_expression] = STATE(1156), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(898), + [sym_initializer_list] = STATE(897), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym___extension__] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_RBRACK] = ACTIONS(1657), + [anon_sym_EQ] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_STAR_EQ] = ACTIONS(1657), + [anon_sym_SLASH_EQ] = ACTIONS(1657), + [anon_sym_PERCENT_EQ] = ACTIONS(1657), + [anon_sym_PLUS_EQ] = ACTIONS(1657), + [anon_sym_DASH_EQ] = ACTIONS(1657), + [anon_sym_LT_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_GT_EQ] = ACTIONS(1657), + [anon_sym_AMP_EQ] = ACTIONS(1657), + [anon_sym_CARET_EQ] = ACTIONS(1657), + [anon_sym_PIPE_EQ] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(2129), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(1657), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1671), + [anon_sym_nullptr] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + }, + [STATE(481)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2069), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(482)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2070), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(483)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2053), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(484)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2151), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(485)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2073), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(486)] = { + [sym_expression] = STATE(1266), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2131), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(487)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2079), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(488)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2232), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(489)] = { + [sym_compound_statement] = STATE(2226), + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2045), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(490)] = { + [sym_expression] = STATE(1309), + [sym__string] = STATE(586), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(167), + [anon_sym_PLUS_PLUS] = ACTIONS(167), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(491)] = { + [sym_expression] = STATE(1321), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(492)] = { + [sym_expression] = STATE(1149), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(898), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(2153), + [anon_sym_PLUS_PLUS] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(2129), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1671), + [anon_sym_nullptr] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + }, + [STATE(493)] = { + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1388), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2210), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(494)] = { + [sym_expression] = STATE(1355), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1168), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1168), + [sym_call_expression] = STATE(1168), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1168), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1168), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(495)] = { + [sym_type_qualifier] = STATE(1238), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(1369), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_expression] = STATE(1371), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_type_descriptor] = STATE(2223), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__type_definition_type_repeat1] = STATE(1238), + [aux_sym_sized_type_specifier_repeat1] = STATE(1308), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(496)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [aux_sym_preproc_if_token2] = ACTIONS(961), + [aux_sym_preproc_else_token1] = ACTIONS(961), + [aux_sym_preproc_elif_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token2] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(497)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [aux_sym_preproc_if_token2] = ACTIONS(961), + [aux_sym_preproc_else_token1] = ACTIONS(961), + [aux_sym_preproc_elif_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token1] = ACTIONS(961), + [aux_sym_preproc_elifdef_token2] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(498)] = { + [sym_identifier] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2161), + [anon_sym_LPAREN2] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym___extension__] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym___attribute__] = ACTIONS(2159), + [anon_sym___attribute] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2161), + [anon_sym___declspec] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_signed] = ACTIONS(2159), + [anon_sym_unsigned] = ACTIONS(2159), + [anon_sym_long] = ACTIONS(2159), + [anon_sym_short] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_EQ] = ACTIONS(2161), + [anon_sym_auto] = ACTIONS(2159), + [anon_sym_register] = ACTIONS(2159), + [anon_sym_inline] = ACTIONS(2159), + [anon_sym___inline] = ACTIONS(2159), + [anon_sym___inline__] = ACTIONS(2159), + [anon_sym___forceinline] = ACTIONS(2159), + [anon_sym_thread_local] = ACTIONS(2159), + [anon_sym___thread] = ACTIONS(2159), + [anon_sym_constexpr] = ACTIONS(2159), + [anon_sym_volatile] = ACTIONS(2159), + [anon_sym_restrict] = ACTIONS(2159), + [anon_sym___restrict__] = ACTIONS(2159), + [anon_sym__Atomic] = ACTIONS(2159), + [anon_sym__Noreturn] = ACTIONS(2159), + [anon_sym_noreturn] = ACTIONS(2159), + [anon_sym__Nonnull] = ACTIONS(2159), + [anon_sym_alignas] = ACTIONS(2159), + [anon_sym__Alignas] = ACTIONS(2159), + [sym_primitive_type] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_COLON] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_case] = ACTIONS(2159), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_goto] = ACTIONS(2159), + [anon_sym___try] = ACTIONS(2159), + [anon_sym___leave] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_sizeof] = ACTIONS(2159), + [anon_sym___alignof__] = ACTIONS(2159), + [anon_sym___alignof] = ACTIONS(2159), + [anon_sym__alignof] = ACTIONS(2159), + [anon_sym_alignof] = ACTIONS(2159), + [anon_sym__Alignof] = ACTIONS(2159), + [anon_sym_offsetof] = ACTIONS(2159), + [anon_sym__Generic] = ACTIONS(2159), + [anon_sym_asm] = ACTIONS(2159), + [anon_sym___asm__] = ACTIONS(2159), + [anon_sym___asm] = ACTIONS(2159), + [sym_number_literal] = ACTIONS(2161), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2161), + [anon_sym_u_DQUOTE] = ACTIONS(2161), + [anon_sym_U_DQUOTE] = ACTIONS(2161), + [anon_sym_u8_DQUOTE] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [anon_sym_NULL] = ACTIONS(2159), + [anon_sym_nullptr] = ACTIONS(2159), + [sym_comment] = ACTIONS(3), + }, + [STATE(499)] = { + [sym_identifier] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_TILDE] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym___extension__] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2163), + [anon_sym___attribute__] = ACTIONS(2163), + [anon_sym___attribute] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2165), + [anon_sym___declspec] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_signed] = ACTIONS(2163), + [anon_sym_unsigned] = ACTIONS(2163), + [anon_sym_long] = ACTIONS(2163), + [anon_sym_short] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_EQ] = ACTIONS(2165), + [anon_sym_auto] = ACTIONS(2163), + [anon_sym_register] = ACTIONS(2163), + [anon_sym_inline] = ACTIONS(2163), + [anon_sym___inline] = ACTIONS(2163), + [anon_sym___inline__] = ACTIONS(2163), + [anon_sym___forceinline] = ACTIONS(2163), + [anon_sym_thread_local] = ACTIONS(2163), + [anon_sym___thread] = ACTIONS(2163), + [anon_sym_constexpr] = ACTIONS(2163), + [anon_sym_volatile] = ACTIONS(2163), + [anon_sym_restrict] = ACTIONS(2163), + [anon_sym___restrict__] = ACTIONS(2163), + [anon_sym__Atomic] = ACTIONS(2163), + [anon_sym__Noreturn] = ACTIONS(2163), + [anon_sym_noreturn] = ACTIONS(2163), + [anon_sym__Nonnull] = ACTIONS(2163), + [anon_sym_alignas] = ACTIONS(2163), + [anon_sym__Alignas] = ACTIONS(2163), + [sym_primitive_type] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_COLON] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_switch] = ACTIONS(2163), + [anon_sym_case] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_goto] = ACTIONS(2163), + [anon_sym___try] = ACTIONS(2163), + [anon_sym___leave] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2165), + [anon_sym_PLUS_PLUS] = ACTIONS(2165), + [anon_sym_sizeof] = ACTIONS(2163), + [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(2163), + [anon_sym__Generic] = ACTIONS(2163), + [anon_sym_asm] = ACTIONS(2163), + [anon_sym___asm__] = ACTIONS(2163), + [anon_sym___asm] = ACTIONS(2163), + [sym_number_literal] = ACTIONS(2165), + [anon_sym_L_SQUOTE] = ACTIONS(2165), + [anon_sym_u_SQUOTE] = ACTIONS(2165), + [anon_sym_U_SQUOTE] = ACTIONS(2165), + [anon_sym_u8_SQUOTE] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2165), + [anon_sym_L_DQUOTE] = ACTIONS(2165), + [anon_sym_u_DQUOTE] = ACTIONS(2165), + [anon_sym_U_DQUOTE] = ACTIONS(2165), + [anon_sym_u8_DQUOTE] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2165), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [anon_sym_NULL] = ACTIONS(2163), + [anon_sym_nullptr] = ACTIONS(2163), + [sym_comment] = ACTIONS(3), + }, + [STATE(500)] = { + [sym_identifier] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym___attribute__] = ACTIONS(2167), + [anon_sym___attribute] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2169), + [anon_sym___declspec] = ACTIONS(2167), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(2167), + [anon_sym_unsigned] = ACTIONS(2167), + [anon_sym_long] = ACTIONS(2167), + [anon_sym_short] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_inline] = ACTIONS(2167), + [anon_sym___inline] = ACTIONS(2167), + [anon_sym___inline__] = ACTIONS(2167), + [anon_sym___forceinline] = ACTIONS(2167), + [anon_sym_thread_local] = ACTIONS(2167), + [anon_sym___thread] = ACTIONS(2167), + [anon_sym_constexpr] = ACTIONS(2167), + [anon_sym_volatile] = ACTIONS(2167), + [anon_sym_restrict] = ACTIONS(2167), + [anon_sym___restrict__] = ACTIONS(2167), + [anon_sym__Atomic] = ACTIONS(2167), + [anon_sym__Noreturn] = ACTIONS(2167), + [anon_sym_noreturn] = ACTIONS(2167), + [anon_sym__Nonnull] = ACTIONS(2167), + [anon_sym_alignas] = ACTIONS(2167), + [anon_sym__Alignas] = ACTIONS(2167), + [sym_primitive_type] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(501)] = { + [sym_string_literal] = STATE(683), + [sym_identifier] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym___attribute__] = ACTIONS(2167), + [anon_sym___attribute] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2169), + [anon_sym___declspec] = ACTIONS(2167), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(2167), + [anon_sym_unsigned] = ACTIONS(2167), + [anon_sym_long] = ACTIONS(2167), + [anon_sym_short] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_inline] = ACTIONS(2167), + [anon_sym___inline] = ACTIONS(2167), + [anon_sym___inline__] = ACTIONS(2167), + [anon_sym___forceinline] = ACTIONS(2167), + [anon_sym_thread_local] = ACTIONS(2167), + [anon_sym___thread] = ACTIONS(2167), + [anon_sym_constexpr] = ACTIONS(2167), + [anon_sym_volatile] = ACTIONS(2167), + [anon_sym_restrict] = ACTIONS(2167), + [anon_sym___restrict__] = ACTIONS(2167), + [anon_sym__Atomic] = ACTIONS(2167), + [anon_sym__Noreturn] = ACTIONS(2167), + [anon_sym_noreturn] = ACTIONS(2167), + [anon_sym__Nonnull] = ACTIONS(2167), + [anon_sym_alignas] = ACTIONS(2167), + [anon_sym__Alignas] = ACTIONS(2167), + [sym_primitive_type] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(2171), + [anon_sym_u_DQUOTE] = ACTIONS(2171), + [anon_sym_U_DQUOTE] = ACTIONS(2171), + [anon_sym_u8_DQUOTE] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + }, + [STATE(502)] = { + [sym_identifier] = ACTIONS(1264), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym___attribute] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(503)] = { + [sym_expression] = STATE(928), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1081), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1081), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1081), + [sym_initializer_list] = STATE(897), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(941), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1663), + [anon_sym_COMMA] = ACTIONS(1657), + [aux_sym_preproc_if_token2] = ACTIONS(1657), + [aux_sym_preproc_else_token1] = ACTIONS(1657), + [aux_sym_preproc_elif_token1] = ACTIONS(1663), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1657), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_LT_LT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym___extension__] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(2109), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(1657), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [STATE(504)] = { + [sym_string_literal] = STATE(675), + [sym_identifier] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym___attribute__] = ACTIONS(2167), + [anon_sym___attribute] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2169), + [anon_sym___declspec] = ACTIONS(2167), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(2167), + [anon_sym_unsigned] = ACTIONS(2167), + [anon_sym_long] = ACTIONS(2167), + [anon_sym_short] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_inline] = ACTIONS(2167), + [anon_sym___inline] = ACTIONS(2167), + [anon_sym___inline__] = ACTIONS(2167), + [anon_sym___forceinline] = ACTIONS(2167), + [anon_sym_thread_local] = ACTIONS(2167), + [anon_sym___thread] = ACTIONS(2167), + [anon_sym_constexpr] = ACTIONS(2167), + [anon_sym_volatile] = ACTIONS(2167), + [anon_sym_restrict] = ACTIONS(2167), + [anon_sym___restrict__] = ACTIONS(2167), + [anon_sym__Atomic] = ACTIONS(2167), + [anon_sym__Noreturn] = ACTIONS(2167), + [anon_sym_noreturn] = ACTIONS(2167), + [anon_sym__Nonnull] = ACTIONS(2167), + [anon_sym_alignas] = ACTIONS(2167), + [anon_sym__Alignas] = ACTIONS(2167), + [sym_primitive_type] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(2171), + [anon_sym_u_DQUOTE] = ACTIONS(2171), + [anon_sym_U_DQUOTE] = ACTIONS(2171), + [anon_sym_u8_DQUOTE] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + }, + [STATE(505)] = { + [sym_string_literal] = STATE(686), + [sym_identifier] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym___attribute__] = ACTIONS(2167), + [anon_sym___attribute] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2169), + [anon_sym___declspec] = ACTIONS(2167), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(2167), + [anon_sym_unsigned] = ACTIONS(2167), + [anon_sym_long] = ACTIONS(2167), + [anon_sym_short] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_inline] = ACTIONS(2167), + [anon_sym___inline] = ACTIONS(2167), + [anon_sym___inline__] = ACTIONS(2167), + [anon_sym___forceinline] = ACTIONS(2167), + [anon_sym_thread_local] = ACTIONS(2167), + [anon_sym___thread] = ACTIONS(2167), + [anon_sym_constexpr] = ACTIONS(2167), + [anon_sym_volatile] = ACTIONS(2167), + [anon_sym_restrict] = ACTIONS(2167), + [anon_sym___restrict__] = ACTIONS(2167), + [anon_sym__Atomic] = ACTIONS(2167), + [anon_sym__Noreturn] = ACTIONS(2167), + [anon_sym_noreturn] = ACTIONS(2167), + [anon_sym__Nonnull] = ACTIONS(2167), + [anon_sym_alignas] = ACTIONS(2167), + [anon_sym__Alignas] = ACTIONS(2167), + [sym_primitive_type] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(2171), + [anon_sym_u_DQUOTE] = ACTIONS(2171), + [anon_sym_U_DQUOTE] = ACTIONS(2171), + [anon_sym_u8_DQUOTE] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + }, + [STATE(506)] = { + [sym_expression] = STATE(928), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1088), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1088), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1088), + [sym_initializer_list] = STATE(897), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1294), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_LT_LT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1663), + [anon_sym___attribute] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_COLON] = ACTIONS(1657), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(1657), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [STATE(507)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_LPAREN2] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2173), + [anon_sym_AMP_AMP] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2173), + [anon_sym_BANG_EQ] = ACTIONS(2173), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(2173), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(2173), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2173), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DASH_GT] = ACTIONS(2173), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(508)] = { + [sym_identifier] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym___attribute__] = ACTIONS(2177), + [anon_sym___attribute] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2179), + [anon_sym___declspec] = ACTIONS(2177), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(2177), + [anon_sym_unsigned] = ACTIONS(2177), + [anon_sym_long] = ACTIONS(2177), + [anon_sym_short] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2177), + [anon_sym_register] = ACTIONS(2177), + [anon_sym_inline] = ACTIONS(2177), + [anon_sym___inline] = ACTIONS(2177), + [anon_sym___inline__] = ACTIONS(2177), + [anon_sym___forceinline] = ACTIONS(2177), + [anon_sym_thread_local] = ACTIONS(2177), + [anon_sym___thread] = ACTIONS(2177), + [anon_sym_constexpr] = ACTIONS(2177), + [anon_sym_volatile] = ACTIONS(2177), + [anon_sym_restrict] = ACTIONS(2177), + [anon_sym___restrict__] = ACTIONS(2177), + [anon_sym__Atomic] = ACTIONS(2177), + [anon_sym__Noreturn] = ACTIONS(2177), + [anon_sym_noreturn] = ACTIONS(2177), + [anon_sym__Nonnull] = ACTIONS(2177), + [anon_sym_alignas] = ACTIONS(2177), + [anon_sym__Alignas] = ACTIONS(2177), + [sym_primitive_type] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(509)] = { + [sym_attribute_specifier] = STATE(1810), + [sym_ms_declspec_modifier] = STATE(1907), + [sym_field_declaration_list] = STATE(952), + [sym_identifier] = ACTIONS(2181), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(2183), + [anon_sym___attribute] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(2185), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(510)] = { + [sym_string_literal] = STATE(687), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym___attribute__] = ACTIONS(2167), + [anon_sym___attribute] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2169), + [anon_sym___declspec] = ACTIONS(2167), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(2167), + [anon_sym_unsigned] = ACTIONS(2167), + [anon_sym_long] = ACTIONS(2167), + [anon_sym_short] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_inline] = ACTIONS(2167), + [anon_sym___inline] = ACTIONS(2167), + [anon_sym___inline__] = ACTIONS(2167), + [anon_sym___forceinline] = ACTIONS(2167), + [anon_sym_thread_local] = ACTIONS(2167), + [anon_sym___thread] = ACTIONS(2167), + [anon_sym_constexpr] = ACTIONS(2167), + [anon_sym_volatile] = ACTIONS(2167), + [anon_sym_restrict] = ACTIONS(2167), + [anon_sym___restrict__] = ACTIONS(2167), + [anon_sym__Atomic] = ACTIONS(2167), + [anon_sym__Noreturn] = ACTIONS(2167), + [anon_sym_noreturn] = ACTIONS(2167), + [anon_sym__Nonnull] = ACTIONS(2167), + [anon_sym_alignas] = ACTIONS(2167), + [anon_sym__Alignas] = ACTIONS(2167), + [sym_primitive_type] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(2171), + [anon_sym_u_DQUOTE] = ACTIONS(2171), + [anon_sym_U_DQUOTE] = ACTIONS(2171), + [anon_sym_u8_DQUOTE] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + }, + [STATE(511)] = { + [sym_else_clause] = STATE(305), + [sym_identifier] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___attribute] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [anon_sym__Nonnull] = ACTIONS(1340), + [anon_sym_alignas] = ACTIONS(1340), + [anon_sym__Alignas] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [anon_sym___asm] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + }, + [STATE(512)] = { + [sym_identifier] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2194), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_TILDE] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym___attribute__] = ACTIONS(2198), + [anon_sym___attribute] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2200), + [anon_sym___declspec] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_signed] = ACTIONS(2198), + [anon_sym_unsigned] = ACTIONS(2198), + [anon_sym_long] = ACTIONS(2198), + [anon_sym_short] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_auto] = ACTIONS(2198), + [anon_sym_register] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym___inline] = ACTIONS(2198), + [anon_sym___inline__] = ACTIONS(2198), + [anon_sym___forceinline] = ACTIONS(2198), + [anon_sym_thread_local] = ACTIONS(2198), + [anon_sym___thread] = ACTIONS(2198), + [anon_sym_constexpr] = ACTIONS(2198), + [anon_sym_volatile] = ACTIONS(2198), + [anon_sym_restrict] = ACTIONS(2198), + [anon_sym___restrict__] = ACTIONS(2198), + [anon_sym__Atomic] = ACTIONS(2198), + [anon_sym__Noreturn] = ACTIONS(2198), + [anon_sym_noreturn] = ACTIONS(2198), + [anon_sym__Nonnull] = ACTIONS(2198), + [anon_sym_alignas] = ACTIONS(2198), + [anon_sym__Alignas] = ACTIONS(2198), + [sym_primitive_type] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_case] = ACTIONS(2196), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_goto] = ACTIONS(2196), + [anon_sym___try] = ACTIONS(2196), + [anon_sym___leave] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2194), + [anon_sym_PLUS_PLUS] = ACTIONS(2194), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2196), + [anon_sym___alignof] = ACTIONS(2196), + [anon_sym__alignof] = ACTIONS(2196), + [anon_sym_alignof] = ACTIONS(2196), + [anon_sym__Alignof] = ACTIONS(2196), + [anon_sym_offsetof] = ACTIONS(2196), + [anon_sym__Generic] = ACTIONS(2196), + [anon_sym_asm] = ACTIONS(2196), + [anon_sym___asm__] = ACTIONS(2196), + [anon_sym___asm] = ACTIONS(2196), + [sym_number_literal] = ACTIONS(2194), + [anon_sym_L_SQUOTE] = ACTIONS(2194), + [anon_sym_u_SQUOTE] = ACTIONS(2194), + [anon_sym_U_SQUOTE] = ACTIONS(2194), + [anon_sym_u8_SQUOTE] = ACTIONS(2194), + [anon_sym_SQUOTE] = ACTIONS(2194), + [anon_sym_L_DQUOTE] = ACTIONS(2194), + [anon_sym_u_DQUOTE] = ACTIONS(2194), + [anon_sym_U_DQUOTE] = ACTIONS(2194), + [anon_sym_u8_DQUOTE] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [anon_sym_NULL] = ACTIONS(2196), + [anon_sym_nullptr] = ACTIONS(2196), + [sym_comment] = ACTIONS(3), + }, + [STATE(513)] = { + [sym_ms_declspec_modifier] = STATE(1916), + [sym_field_declaration_list] = STATE(956), + [sym_identifier] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(2185), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(514)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2227), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(515)] = { + [sym_expression] = STATE(928), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_initializer_list] = STATE(897), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2131), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_LT_LT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(1657), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(516)] = { + [sym_compound_statement] = STATE(1828), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(517)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(518)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(519)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2233), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(520)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2227), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(521)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2235), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(522)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2237), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(523)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2239), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(524)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2241), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(525)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2243), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(526)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2245), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(527)] = { + [sym_compound_statement] = STATE(1851), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(528)] = { + [sym_enumerator_list] = STATE(1107), + [sym_identifier] = ACTIONS(2247), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(529)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2251), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(530)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2237), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(531)] = { + [sym_compound_statement] = STATE(1814), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(532)] = { + [sym_compound_statement] = STATE(1821), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(533)] = { + [sym_compound_statement] = STATE(1835), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(534)] = { + [sym_parenthesized_expression] = STATE(436), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(535)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(536)] = { + [sym_identifier] = ACTIONS(2255), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym___attribute] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym___cdecl] = ACTIONS(2255), + [anon_sym___clrcall] = ACTIONS(2255), + [anon_sym___stdcall] = ACTIONS(2255), + [anon_sym___fastcall] = ACTIONS(2255), + [anon_sym___thiscall] = ACTIONS(2255), + [anon_sym___vectorcall] = ACTIONS(2255), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym__Nonnull] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym__Alignas] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(537)] = { + [sym_expression] = STATE(1156), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_initializer_list] = STATE(897), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_LT_LT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym___extension__] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_RBRACK] = ACTIONS(1657), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(1657), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(538)] = { + [sym_identifier] = ACTIONS(2255), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym___extension__] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2255), + [anon_sym___attribute] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2257), + [anon_sym___declspec] = ACTIONS(2255), + [anon_sym___based] = ACTIONS(2255), + [anon_sym___cdecl] = ACTIONS(2255), + [anon_sym___clrcall] = ACTIONS(2255), + [anon_sym___stdcall] = ACTIONS(2255), + [anon_sym___fastcall] = ACTIONS(2255), + [anon_sym___thiscall] = ACTIONS(2255), + [anon_sym___vectorcall] = ACTIONS(2255), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym___inline] = ACTIONS(2255), + [anon_sym___inline__] = ACTIONS(2255), + [anon_sym___forceinline] = ACTIONS(2255), + [anon_sym_thread_local] = ACTIONS(2255), + [anon_sym___thread] = ACTIONS(2255), + [anon_sym_constexpr] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2255), + [anon_sym___restrict__] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2255), + [anon_sym__Noreturn] = ACTIONS(2255), + [anon_sym_noreturn] = ACTIONS(2255), + [anon_sym__Nonnull] = ACTIONS(2255), + [anon_sym_alignas] = ACTIONS(2255), + [anon_sym__Alignas] = ACTIONS(2255), + [sym_primitive_type] = ACTIONS(2255), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(539)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2261), + [anon_sym___extension__] = ACTIONS(2259), + [anon_sym_extern] = ACTIONS(2259), + [anon_sym___attribute__] = ACTIONS(2259), + [anon_sym___attribute] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2261), + [anon_sym___declspec] = ACTIONS(2259), + [anon_sym___based] = ACTIONS(2259), + [anon_sym___cdecl] = ACTIONS(2259), + [anon_sym___clrcall] = ACTIONS(2259), + [anon_sym___stdcall] = ACTIONS(2259), + [anon_sym___fastcall] = ACTIONS(2259), + [anon_sym___thiscall] = ACTIONS(2259), + [anon_sym___vectorcall] = ACTIONS(2259), + [anon_sym_signed] = ACTIONS(2263), + [anon_sym_unsigned] = ACTIONS(2263), + [anon_sym_long] = ACTIONS(2263), + [anon_sym_short] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2259), + [anon_sym_register] = ACTIONS(2259), + [anon_sym_inline] = ACTIONS(2259), + [anon_sym___inline] = ACTIONS(2259), + [anon_sym___inline__] = ACTIONS(2259), + [anon_sym___forceinline] = ACTIONS(2259), + [anon_sym_thread_local] = ACTIONS(2259), + [anon_sym___thread] = ACTIONS(2259), + [anon_sym_constexpr] = ACTIONS(2259), + [anon_sym_volatile] = ACTIONS(2259), + [anon_sym_restrict] = ACTIONS(2259), + [anon_sym___restrict__] = ACTIONS(2259), + [anon_sym__Atomic] = ACTIONS(2259), + [anon_sym__Noreturn] = ACTIONS(2259), + [anon_sym_noreturn] = ACTIONS(2259), + [anon_sym__Nonnull] = ACTIONS(2259), + [anon_sym_alignas] = ACTIONS(2259), + [anon_sym__Alignas] = ACTIONS(2259), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(540)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(2259), + [anon_sym_extern] = ACTIONS(2259), + [anon_sym___attribute__] = ACTIONS(2259), + [anon_sym___attribute] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2261), + [anon_sym___declspec] = ACTIONS(2259), + [anon_sym___based] = ACTIONS(2259), + [anon_sym___cdecl] = ACTIONS(2259), + [anon_sym___clrcall] = ACTIONS(2259), + [anon_sym___stdcall] = ACTIONS(2259), + [anon_sym___fastcall] = ACTIONS(2259), + [anon_sym___thiscall] = ACTIONS(2259), + [anon_sym___vectorcall] = ACTIONS(2259), + [anon_sym_signed] = ACTIONS(2263), + [anon_sym_unsigned] = ACTIONS(2263), + [anon_sym_long] = ACTIONS(2263), + [anon_sym_short] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(2259), + [anon_sym_register] = ACTIONS(2259), + [anon_sym_inline] = ACTIONS(2259), + [anon_sym___inline] = ACTIONS(2259), + [anon_sym___inline__] = ACTIONS(2259), + [anon_sym___forceinline] = ACTIONS(2259), + [anon_sym_thread_local] = ACTIONS(2259), + [anon_sym___thread] = ACTIONS(2259), + [anon_sym_constexpr] = ACTIONS(2259), + [anon_sym_volatile] = ACTIONS(2259), + [anon_sym_restrict] = ACTIONS(2259), + [anon_sym___restrict__] = ACTIONS(2259), + [anon_sym__Atomic] = ACTIONS(2259), + [anon_sym__Noreturn] = ACTIONS(2259), + [anon_sym_noreturn] = ACTIONS(2259), + [anon_sym__Nonnull] = ACTIONS(2259), + [anon_sym_alignas] = ACTIONS(2259), + [anon_sym__Alignas] = ACTIONS(2259), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(541)] = { + [sym_parenthesized_expression] = STATE(447), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(542)] = { + [sym_string_literal] = STATE(853), + [aux_sym_sized_type_specifier_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN2] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym___extension__] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym___attribute__] = ACTIONS(2205), + [anon_sym___attribute] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2221), + [anon_sym___declspec] = ACTIONS(2205), + [anon_sym___based] = ACTIONS(2205), + [anon_sym___cdecl] = ACTIONS(2205), + [anon_sym___clrcall] = ACTIONS(2205), + [anon_sym___stdcall] = ACTIONS(2205), + [anon_sym___fastcall] = ACTIONS(2205), + [anon_sym___thiscall] = ACTIONS(2205), + [anon_sym___vectorcall] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2268), + [anon_sym_auto] = ACTIONS(2205), + [anon_sym_register] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym___inline] = ACTIONS(2205), + [anon_sym___inline__] = ACTIONS(2205), + [anon_sym___forceinline] = ACTIONS(2205), + [anon_sym_thread_local] = ACTIONS(2205), + [anon_sym___thread] = ACTIONS(2205), + [anon_sym_constexpr] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_restrict] = ACTIONS(2205), + [anon_sym___restrict__] = ACTIONS(2205), + [anon_sym__Atomic] = ACTIONS(2205), + [anon_sym__Noreturn] = ACTIONS(2205), + [anon_sym_noreturn] = ACTIONS(2205), + [anon_sym__Nonnull] = ACTIONS(2205), + [anon_sym_alignas] = ACTIONS(2205), + [anon_sym__Alignas] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2251), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(2270), + [anon_sym_SLASH_EQ] = ACTIONS(2270), + [anon_sym_PERCENT_EQ] = ACTIONS(2270), + [anon_sym_PLUS_EQ] = ACTIONS(2270), + [anon_sym_DASH_EQ] = ACTIONS(2270), + [anon_sym_LT_LT_EQ] = ACTIONS(2270), + [anon_sym_GT_GT_EQ] = ACTIONS(2270), + [anon_sym_AMP_EQ] = ACTIONS(2270), + [anon_sym_CARET_EQ] = ACTIONS(2270), + [anon_sym_PIPE_EQ] = ACTIONS(2270), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [STATE(543)] = { + [sym_parenthesized_expression] = STATE(438), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(544)] = { + [sym_expression] = STATE(928), + [sym__string] = STATE(586), + [sym_conditional_expression] = STATE(586), + [sym_assignment_expression] = STATE(586), + [sym_pointer_expression] = STATE(1165), + [sym_unary_expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_update_expression] = STATE(586), + [sym_cast_expression] = STATE(586), + [sym_sizeof_expression] = STATE(586), + [sym_alignof_expression] = STATE(586), + [sym_offsetof_expression] = STATE(586), + [sym_generic_expression] = STATE(586), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_gnu_asm_expression] = STATE(586), + [sym_extension_expression] = STATE(586), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(1165), + [sym_initializer_list] = STATE(897), + [sym_char_literal] = STATE(586), + [sym_concatenated_string] = STATE(586), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(586), + [sym_identifier] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_LT_LT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym___extension__] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(169), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(1657), + [sym_number_literal] = ACTIONS(171), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(545)] = { + [sym_parenthesized_expression] = STATE(372), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(546)] = { + [sym_parenthesized_expression] = STATE(374), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(547)] = { + [sym_parenthesized_expression] = STATE(419), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(548)] = { + [sym_parenthesized_expression] = STATE(385), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(549)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(550)] = { + [sym_parenthesized_expression] = STATE(420), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(551)] = { + [sym_parenthesized_expression] = STATE(395), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(552)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(553)] = { + [sym_parenthesized_expression] = STATE(1987), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(554)] = { + [sym_parenthesized_expression] = STATE(405), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(555)] = { + [sym_parenthesized_expression] = STATE(461), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(556)] = { + [sym_parenthesized_expression] = STATE(463), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(557)] = { + [sym_parenthesized_expression] = STATE(448), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(558)] = { + [sym_parenthesized_expression] = STATE(2016), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(559)] = { + [sym_parenthesized_expression] = STATE(426), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(560)] = { + [sym_parenthesized_expression] = STATE(2005), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(561)] = { + [sym_parenthesized_expression] = STATE(2019), + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(562)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(563)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(564)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(565)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(566)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(567)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(568)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(569)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(570)] = { + [sym_identifier] = ACTIONS(2294), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(571)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(2296), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(572)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(2298), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(573)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(574)] = { + [sym_parenthesized_expression] = STATE(371), + [sym_identifier] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(575)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(576)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(577)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(578)] = { + [sym_expression] = STATE(928), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1168), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1168), + [sym_call_expression] = STATE(1168), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1168), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1168), + [sym_initializer_list] = STATE(897), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_LT_LT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym___extension__] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DASH_GT] = ACTIONS(1657), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(579)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(580)] = { + [sym_identifier] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(581)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2312), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(582)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(583)] = { + [sym_identifier] = ACTIONS(2316), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(584)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(585)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(586)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(587)] = { + [sym_identifier] = ACTIONS(2322), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(588)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(589)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(590)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(591)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(592)] = { + [sym_parenthesized_expression] = STATE(439), + [sym_identifier] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(593)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(594)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(2334), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(595)] = { + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1407), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_ms_based_modifier] = STATE(2061), + [sym_ms_call_modifier] = STATE(1554), + [sym__declarator] = STATE(1726), + [sym__abstract_declarator] = STATE(1818), + [sym_parenthesized_declarator] = STATE(1606), + [sym_abstract_parenthesized_declarator] = STATE(1759), + [sym_attributed_declarator] = STATE(1606), + [sym_pointer_declarator] = STATE(1606), + [sym_abstract_pointer_declarator] = STATE(1759), + [sym_function_declarator] = STATE(1606), + [sym_abstract_function_declarator] = STATE(1759), + [sym_array_declarator] = STATE(1606), + [sym_abstract_array_declarator] = STATE(1759), + [sym_compound_statement] = STATE(2129), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_variadic_parameter] = STATE(1860), + [sym_parameter_list] = STATE(1742), + [sym_parameter_declaration] = STATE(1860), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2338), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2344), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___based] = ACTIONS(2346), + [anon_sym___cdecl] = ACTIONS(2348), + [anon_sym___clrcall] = ACTIONS(2348), + [anon_sym___stdcall] = ACTIONS(2348), + [anon_sym___fastcall] = ACTIONS(2348), + [anon_sym___thiscall] = ACTIONS(2348), + [anon_sym___vectorcall] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(596)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DASH_GT] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(597)] = { + [sym_identifier] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym___attribute] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(961), + [anon_sym___declspec] = ACTIONS(961), + [anon_sym___based] = ACTIONS(961), + [anon_sym___cdecl] = ACTIONS(961), + [anon_sym___clrcall] = ACTIONS(961), + [anon_sym___stdcall] = ACTIONS(961), + [anon_sym___fastcall] = ACTIONS(961), + [anon_sym___thiscall] = ACTIONS(961), + [anon_sym___vectorcall] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym___inline] = ACTIONS(961), + [anon_sym___inline__] = ACTIONS(961), + [anon_sym___forceinline] = ACTIONS(961), + [anon_sym_thread_local] = ACTIONS(961), + [anon_sym___thread] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym___restrict__] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym__Noreturn] = ACTIONS(961), + [anon_sym_noreturn] = ACTIONS(961), + [anon_sym__Nonnull] = ACTIONS(961), + [anon_sym_alignas] = ACTIONS(961), + [anon_sym__Alignas] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_L_DQUOTE] = ACTIONS(961), + [anon_sym_u_DQUOTE] = ACTIONS(961), + [anon_sym_U_DQUOTE] = ACTIONS(961), + [anon_sym_u8_DQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [STATE(598)] = { + [sym_identifier] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym___extension__] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_RBRACK] = ACTIONS(1266), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [anon_sym__Nonnull] = ACTIONS(1264), + [anon_sym_alignas] = ACTIONS(1264), + [anon_sym__Alignas] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym___alignof__] = ACTIONS(1264), + [anon_sym___alignof] = ACTIONS(1264), + [anon_sym__alignof] = ACTIONS(1264), + [anon_sym_alignof] = ACTIONS(1264), + [anon_sym__Alignof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [anon_sym___asm] = ACTIONS(1264), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), + [sym_comment] = ACTIONS(3), + }, + [STATE(599)] = { + [sym_type_qualifier] = STATE(601), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1354), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_RBRACK] = ACTIONS(2370), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(600)] = { + [sym_type_qualifier] = STATE(892), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1386), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(892), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2378), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(601)] = { + [sym_type_qualifier] = STATE(892), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1349), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(892), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2382), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(602)] = { + [sym_type_qualifier] = STATE(892), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1368), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(892), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2386), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(603)] = { + [sym_type_qualifier] = STATE(606), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1350), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(606), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_RBRACK] = ACTIONS(2392), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(604)] = { + [sym_type_qualifier] = STATE(607), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1385), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(607), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_RBRACK] = ACTIONS(2398), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(605)] = { + [sym_type_qualifier] = STATE(602), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1370), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(602), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_RBRACK] = ACTIONS(2404), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(606)] = { + [sym_type_qualifier] = STATE(892), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1364), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(892), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(607)] = { + [sym_type_qualifier] = STATE(892), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1352), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(892), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(608)] = { + [sym_type_qualifier] = STATE(600), + [sym_alignas_qualifier] = STATE(598), + [sym_expression] = STATE(1363), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1161), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1161), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1161), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_array_declarator_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym___extension__] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_RBRACK] = ACTIONS(2418), + [anon_sym_constexpr] = ACTIONS(2366), + [anon_sym_volatile] = ACTIONS(2366), + [anon_sym_restrict] = ACTIONS(2366), + [anon_sym___restrict__] = ACTIONS(2366), + [anon_sym__Atomic] = ACTIONS(2366), + [anon_sym__Noreturn] = ACTIONS(2366), + [anon_sym_noreturn] = ACTIONS(2366), + [anon_sym__Nonnull] = ACTIONS(2366), + [anon_sym_alignas] = ACTIONS(2372), + [anon_sym__Alignas] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(609)] = { + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1407), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_ms_call_modifier] = STATE(1674), + [sym__abstract_declarator] = STATE(1818), + [sym_abstract_parenthesized_declarator] = STATE(1759), + [sym_abstract_pointer_declarator] = STATE(1759), + [sym_abstract_function_declarator] = STATE(1759), + [sym_abstract_array_declarator] = STATE(1759), + [sym_compound_statement] = STATE(2129), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym_variadic_parameter] = STATE(1860), + [sym_parameter_list] = STATE(1742), + [sym_parameter_declaration] = STATE(1860), + [sym_macro_type_specifier] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2338), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(2426), + [anon_sym___clrcall] = ACTIONS(2426), + [anon_sym___stdcall] = ACTIONS(2426), + [anon_sym___fastcall] = ACTIONS(2426), + [anon_sym___thiscall] = ACTIONS(2426), + [anon_sym___vectorcall] = ACTIONS(2426), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(610)] = { + [sym_expression] = STATE(1255), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_initializer_list] = STATE(1893), + [sym_initializer_pair] = STATE(1893), + [sym_subscript_designator] = STATE(1743), + [sym_subscript_range_designator] = STATE(1743), + [sym_field_designator] = STATE(1743), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_initializer_pair_repeat1] = STATE(1743), + [sym_identifier] = ACTIONS(2428), + [anon_sym_COMMA] = ACTIONS(2430), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(611)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym_preproc_else_in_field_declaration_list] = STATE(2109), + [sym_preproc_elif_in_field_declaration_list] = STATE(2109), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2109), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(612)] = { + [sym_preproc_def] = STATE(615), + [sym_preproc_function_def] = STATE(615), + [sym_preproc_call] = STATE(615), + [sym_preproc_if_in_field_declaration_list] = STATE(615), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(615), + [sym_preproc_else_in_field_declaration_list] = STATE(2091), + [sym_preproc_elif_in_field_declaration_list] = STATE(2091), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2091), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(615), + [sym_field_declaration] = STATE(615), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(615), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(613)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym_preproc_else_in_field_declaration_list] = STATE(2185), + [sym_preproc_elif_in_field_declaration_list] = STATE(2185), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2185), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(614)] = { + [sym_preproc_def] = STATE(618), + [sym_preproc_function_def] = STATE(618), + [sym_preproc_call] = STATE(618), + [sym_preproc_if_in_field_declaration_list] = STATE(618), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(618), + [sym_preproc_else_in_field_declaration_list] = STATE(2054), + [sym_preproc_elif_in_field_declaration_list] = STATE(2054), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2054), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(618), + [sym_field_declaration] = STATE(618), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(618), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(615)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym_preproc_else_in_field_declaration_list] = STATE(2066), + [sym_preproc_elif_in_field_declaration_list] = STATE(2066), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2066), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(616)] = { + [sym_preproc_def] = STATE(620), + [sym_preproc_function_def] = STATE(620), + [sym_preproc_call] = STATE(620), + [sym_preproc_if_in_field_declaration_list] = STATE(620), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(620), + [sym_preproc_else_in_field_declaration_list] = STATE(2183), + [sym_preproc_elif_in_field_declaration_list] = STATE(2183), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2183), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(620), + [sym_field_declaration] = STATE(620), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(620), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(617)] = { + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_field_declaration_list] = STATE(624), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(624), + [sym_preproc_else_in_field_declaration_list] = STATE(2119), + [sym_preproc_elif_in_field_declaration_list] = STATE(2119), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2119), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(624), + [sym_field_declaration] = STATE(624), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(624), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(618)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym_preproc_else_in_field_declaration_list] = STATE(2090), + [sym_preproc_elif_in_field_declaration_list] = STATE(2090), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2090), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(619)] = { + [sym_preproc_def] = STATE(621), + [sym_preproc_function_def] = STATE(621), + [sym_preproc_call] = STATE(621), + [sym_preproc_if_in_field_declaration_list] = STATE(621), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(621), + [sym_preproc_else_in_field_declaration_list] = STATE(2270), + [sym_preproc_elif_in_field_declaration_list] = STATE(2270), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2270), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(621), + [sym_field_declaration] = STATE(621), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(621), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(620)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym_preproc_else_in_field_declaration_list] = STATE(2051), + [sym_preproc_elif_in_field_declaration_list] = STATE(2051), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2051), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(621)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym_preproc_else_in_field_declaration_list] = STATE(2055), + [sym_preproc_elif_in_field_declaration_list] = STATE(2055), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2055), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(622)] = { + [sym_preproc_def] = STATE(611), + [sym_preproc_function_def] = STATE(611), + [sym_preproc_call] = STATE(611), + [sym_preproc_if_in_field_declaration_list] = STATE(611), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(611), + [sym_preproc_else_in_field_declaration_list] = STATE(2142), + [sym_preproc_elif_in_field_declaration_list] = STATE(2142), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2142), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(611), + [sym_field_declaration] = STATE(611), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(611), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(623)] = { + [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_preproc_else_in_field_declaration_list] = STATE(2260), + [sym_preproc_elif_in_field_declaration_list] = STATE(2260), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2260), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(625), + [sym_field_declaration] = STATE(625), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(624)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym_preproc_else_in_field_declaration_list] = STATE(2042), + [sym_preproc_elif_in_field_declaration_list] = STATE(2042), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2042), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(625)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym_preproc_else_in_field_declaration_list] = STATE(2227), + [sym_preproc_elif_in_field_declaration_list] = STATE(2227), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2227), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(626)] = { + [sym_preproc_def] = STATE(613), + [sym_preproc_function_def] = STATE(613), + [sym_preproc_call] = STATE(613), + [sym_preproc_if_in_field_declaration_list] = STATE(613), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(613), + [sym_preproc_else_in_field_declaration_list] = STATE(2102), + [sym_preproc_elif_in_field_declaration_list] = STATE(2102), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2102), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(613), + [sym_field_declaration] = STATE(613), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(613), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2438), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2446), + [aux_sym_preproc_elif_token1] = ACTIONS(2448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(627)] = { + [sym_expression] = STATE(1277), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_initializer_list] = STATE(1994), + [sym_initializer_pair] = STATE(1994), + [sym_subscript_designator] = STATE(1743), + [sym_subscript_range_designator] = STATE(1743), + [sym_field_designator] = STATE(1743), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_initializer_pair_repeat1] = STATE(1743), + [sym_identifier] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(628)] = { + [sym_expression] = STATE(1277), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_initializer_list] = STATE(1994), + [sym_initializer_pair] = STATE(1994), + [sym_subscript_designator] = STATE(1743), + [sym_subscript_range_designator] = STATE(1743), + [sym_field_designator] = STATE(1743), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_initializer_pair_repeat1] = STATE(1743), + [sym_identifier] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(629)] = { + [sym_expression] = STATE(1277), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_initializer_list] = STATE(1994), + [sym_initializer_pair] = STATE(1994), + [sym_subscript_designator] = STATE(1743), + [sym_subscript_range_designator] = STATE(1743), + [sym_field_designator] = STATE(1743), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [aux_sym_initializer_pair_repeat1] = STATE(1743), + [sym_identifier] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(630)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1579), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2488), + [aux_sym_preproc_def_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token1] = ACTIONS(2494), + [aux_sym_preproc_if_token2] = ACTIONS(2497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [aux_sym_preproc_else_token1] = ACTIONS(2497), + [aux_sym_preproc_elif_token1] = ACTIONS(2497), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2497), + [sym_preproc_directive] = ACTIONS(2502), + [anon_sym___extension__] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym___attribute] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2517), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2505), + [anon_sym_volatile] = ACTIONS(2505), + [anon_sym_restrict] = ACTIONS(2505), + [anon_sym___restrict__] = ACTIONS(2505), + [anon_sym__Atomic] = ACTIONS(2505), + [anon_sym__Noreturn] = ACTIONS(2505), + [anon_sym_noreturn] = ACTIONS(2505), + [anon_sym__Nonnull] = ACTIONS(2505), + [anon_sym_alignas] = ACTIONS(2523), + [anon_sym__Alignas] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + }, + [STATE(631)] = { + [sym_preproc_def] = STATE(632), + [sym_preproc_function_def] = STATE(632), + [sym_preproc_call] = STATE(632), + [sym_preproc_if_in_field_declaration_list] = STATE(632), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(632), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1575), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(632), + [sym_field_declaration] = STATE(632), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(632), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2538), + [aux_sym_preproc_if_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2544), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(632)] = { + [sym_preproc_def] = STATE(632), + [sym_preproc_function_def] = STATE(632), + [sym_preproc_call] = STATE(632), + [sym_preproc_if_in_field_declaration_list] = STATE(632), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(632), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1575), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(632), + [sym_field_declaration] = STATE(632), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(632), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2488), + [aux_sym_preproc_def_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2554), + [sym_preproc_directive] = ACTIONS(2557), + [anon_sym___extension__] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym___attribute] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2505), + [anon_sym_volatile] = ACTIONS(2505), + [anon_sym_restrict] = ACTIONS(2505), + [anon_sym___restrict__] = ACTIONS(2505), + [anon_sym__Atomic] = ACTIONS(2505), + [anon_sym__Noreturn] = ACTIONS(2505), + [anon_sym_noreturn] = ACTIONS(2505), + [anon_sym__Nonnull] = ACTIONS(2505), + [anon_sym_alignas] = ACTIONS(2523), + [anon_sym__Alignas] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + }, + [STATE(633)] = { + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_field_declaration_list] = STATE(636), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(636), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1578), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(636), + [sym_field_declaration] = STATE(636), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(636), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2562), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2568), + [sym_preproc_directive] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(634)] = { + [sym_compound_statement] = STATE(1856), + [sym_expression] = STATE(1271), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(635)] = { + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_field_declaration_list] = STATE(635), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(635), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1578), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(635), + [sym_field_declaration] = STATE(635), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2488), + [aux_sym_preproc_def_token1] = ACTIONS(2576), + [aux_sym_preproc_if_token1] = ACTIONS(2579), + [aux_sym_preproc_if_token2] = ACTIONS(2497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), + [sym_preproc_directive] = ACTIONS(2585), + [anon_sym___extension__] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym___attribute] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2514), + [anon_sym___declspec] = ACTIONS(2517), + [anon_sym_signed] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_auto] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym___inline] = ACTIONS(2508), + [anon_sym___inline__] = ACTIONS(2508), + [anon_sym___forceinline] = ACTIONS(2508), + [anon_sym_thread_local] = ACTIONS(2508), + [anon_sym___thread] = ACTIONS(2508), + [anon_sym_constexpr] = ACTIONS(2505), + [anon_sym_volatile] = ACTIONS(2505), + [anon_sym_restrict] = ACTIONS(2505), + [anon_sym___restrict__] = ACTIONS(2505), + [anon_sym__Atomic] = ACTIONS(2505), + [anon_sym__Noreturn] = ACTIONS(2505), + [anon_sym_noreturn] = ACTIONS(2505), + [anon_sym__Nonnull] = ACTIONS(2505), + [anon_sym_alignas] = ACTIONS(2523), + [anon_sym__Alignas] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + }, + [STATE(636)] = { + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_field_declaration_list] = STATE(635), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(635), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1578), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(635), + [sym_field_declaration] = STATE(635), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2562), + [aux_sym_preproc_if_token1] = ACTIONS(2564), + [aux_sym_preproc_if_token2] = ACTIONS(2588), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2568), + [sym_preproc_directive] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(637)] = { + [sym_preproc_def] = STATE(631), + [sym_preproc_function_def] = STATE(631), + [sym_preproc_call] = STATE(631), + [sym_preproc_if_in_field_declaration_list] = STATE(631), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(631), + [sym__declaration_modifiers] = STATE(929), + [sym__declaration_specifiers] = STATE(1575), + [sym_attribute_specifier] = STATE(929), + [sym_attribute_declaration] = STATE(929), + [sym_ms_declspec_modifier] = STATE(929), + [sym_storage_class_specifier] = STATE(929), + [sym_type_qualifier] = STATE(929), + [sym_alignas_qualifier] = STATE(502), + [sym_type_specifier] = STATE(947), + [sym_sized_type_specifier] = STATE(999), + [sym_enum_specifier] = STATE(999), + [sym_struct_specifier] = STATE(999), + [sym_union_specifier] = STATE(999), + [sym__field_declaration_list_item] = STATE(631), + [sym_field_declaration] = STATE(631), + [sym_macro_type_specifier] = STATE(999), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(631), + [aux_sym__declaration_specifiers_repeat1] = STATE(929), + [aux_sym_sized_type_specifier_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2538), + [aux_sym_preproc_if_token1] = ACTIONS(2540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2544), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(49), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym_const] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_signed] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2350), + [anon_sym_long] = ACTIONS(2350), + [anon_sym_short] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(49), + [anon_sym_auto] = ACTIONS(49), + [anon_sym_register] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym___inline] = ACTIONS(49), + [anon_sym___inline__] = ACTIONS(49), + [anon_sym___forceinline] = ACTIONS(49), + [anon_sym_thread_local] = ACTIONS(49), + [anon_sym___thread] = ACTIONS(49), + [anon_sym_constexpr] = ACTIONS(37), + [anon_sym_volatile] = ACTIONS(37), + [anon_sym_restrict] = ACTIONS(37), + [anon_sym___restrict__] = ACTIONS(37), + [anon_sym__Atomic] = ACTIONS(37), + [anon_sym__Noreturn] = ACTIONS(37), + [anon_sym_noreturn] = ACTIONS(37), + [anon_sym__Nonnull] = ACTIONS(37), + [anon_sym_alignas] = ACTIONS(51), + [anon_sym__Alignas] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1810), + [sym_comment] = ACTIONS(3), + }, + [STATE(638)] = { + [sym_compound_statement] = STATE(2226), + [sym_expression] = STATE(1336), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2226), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(639)] = { + [sym_compound_statement] = STATE(1906), + [sym_expression] = STATE(1256), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(640)] = { + [sym_compound_statement] = STATE(2148), + [sym_expression] = STATE(1345), + [sym__string] = STATE(900), + [sym_comma_expression] = STATE(2148), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(641)] = { + [sym_compound_statement] = STATE(1997), + [sym_expression] = STATE(1303), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [STATE(642)] = { + [sym_compound_statement] = STATE(1959), + [sym_expression] = STATE(1267), + [sym__string] = STATE(900), + [sym_conditional_expression] = STATE(900), + [sym_assignment_expression] = STATE(900), + [sym_pointer_expression] = STATE(1131), + [sym_unary_expression] = STATE(900), + [sym_binary_expression] = STATE(900), + [sym_update_expression] = STATE(900), + [sym_cast_expression] = STATE(900), + [sym_sizeof_expression] = STATE(900), + [sym_alignof_expression] = STATE(900), + [sym_offsetof_expression] = STATE(900), + [sym_generic_expression] = STATE(900), + [sym_subscript_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_gnu_asm_expression] = STATE(900), + [sym_extension_expression] = STATE(900), + [sym_field_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(900), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(900), + [sym_concatenated_string] = STATE(900), + [sym_string_literal] = STATE(896), + [sym_null] = STATE(900), + [sym_identifier] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym___asm] = ACTIONS(93), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + ACTIONS(2598), 1, + anon_sym_RPAREN, + STATE(896), 1, + sym_string_literal, + STATE(1298), 1, + sym_expression, + STATE(2209), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [113] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + ACTIONS(2600), 1, + anon_sym_RPAREN, + STATE(896), 1, + sym_string_literal, + STATE(1280), 1, + sym_expression, + STATE(2096), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [226] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + ACTIONS(2602), 1, + anon_sym_RPAREN, + STATE(896), 1, + sym_string_literal, + STATE(1296), 1, + sym_expression, + STATE(2100), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [339] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(2604), 1, + anon_sym_COLON, + STATE(896), 1, + sym_string_literal, + STATE(1323), 1, + sym_expression, + STATE(2268), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [452] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + ACTIONS(2606), 1, + anon_sym_RPAREN, + STATE(896), 1, + sym_string_literal, + STATE(1297), 1, + sym_expression, + STATE(2105), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [565] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(2608), 1, + anon_sym_COLON, + STATE(896), 1, + sym_string_literal, + STATE(1327), 1, + sym_expression, + STATE(2056), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [678] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, + sym_string_literal, + STATE(1276), 1, + sym_expression, + STATE(1985), 1, + sym_initializer_list, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [791] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(2610), 1, + anon_sym_COLON, + STATE(896), 1, + sym_string_literal, + STATE(1304), 1, + sym_expression, + STATE(2116), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [904] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, + sym_string_literal, + STATE(1279), 1, + sym_expression, + STATE(1966), 1, + sym_initializer_list, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1017] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(1667), 1, + anon_sym_LBRACE, + STATE(896), 1, + sym_string_literal, + STATE(897), 1, + sym_initializer_list, + STATE(928), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1130] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(2135), 1, + sym_identifier, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, + anon_sym___extension__, + ACTIONS(2149), 1, + anon_sym_sizeof, + STATE(896), 1, + sym_string_literal, + STATE(897), 1, + sym_initializer_list, + STATE(1156), 1, + sym_expression, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(2139), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2141), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2147), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1161), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1243] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, + sym_string_literal, + STATE(897), 1, + sym_initializer_list, + STATE(928), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1356] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, + sym_string_literal, + STATE(1337), 1, + sym_expression, + STATE(1999), 1, + sym_compound_statement, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1469] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(2612), 1, + anon_sym_COLON, + STATE(896), 1, + sym_string_literal, + STATE(1290), 1, + sym_expression, + STATE(2182), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1582] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + ACTIONS(2614), 1, + anon_sym_RPAREN, + STATE(896), 1, + sym_string_literal, + STATE(1295), 1, + sym_expression, + STATE(2228), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1695] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(2616), 1, + anon_sym_COLON, + STATE(896), 1, + sym_string_literal, + STATE(1341), 1, + sym_expression, + STATE(2135), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1808] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(2618), 1, + anon_sym_COLON, + STATE(896), 1, + sym_string_literal, + STATE(1338), 1, + sym_expression, + STATE(2157), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1921] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(2620), 1, + anon_sym_COLON, + STATE(896), 1, + sym_string_literal, + STATE(1339), 1, + sym_expression, + STATE(2163), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2034] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + STATE(896), 1, + sym_string_literal, + STATE(897), 1, + sym_initializer_list, + STATE(1156), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2147] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, + sym_number_literal, + ACTIONS(965), 1, + anon_sym___extension__, + ACTIONS(1284), 1, + sym_identifier, + ACTIONS(1667), 1, + anon_sym_LBRACE, + STATE(896), 1, + sym_string_literal, + STATE(897), 1, + sym_initializer_list, + STATE(928), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2260] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(897), 1, + sym_initializer_list, + STATE(928), 1, + sym_expression, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2373] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, + anon_sym___extension__, + ACTIONS(2109), 1, + anon_sym_sizeof, + STATE(897), 1, + sym_initializer_list, + STATE(928), 1, + sym_expression, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2103), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2107), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1081), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2486] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(2624), 1, + anon_sym_COLON, + STATE(896), 1, + sym_string_literal, + STATE(1313), 1, + sym_expression, + STATE(2098), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2599] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, + sym_string_literal, + STATE(897), 1, + sym_initializer_list, + STATE(928), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2712] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + ACTIONS(2626), 1, + anon_sym_COLON, + STATE(896), 1, + sym_string_literal, + STATE(1320), 1, + sym_expression, + STATE(2190), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2825] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + ACTIONS(2628), 1, + anon_sym_RPAREN, + STATE(896), 1, + sym_string_literal, + STATE(1299), 1, + sym_expression, + STATE(2254), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2938] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, + sym_number_literal, + ACTIONS(965), 1, + anon_sym___extension__, + ACTIONS(1284), 1, + sym_identifier, + ACTIONS(2630), 1, + anon_sym_SEMI, + STATE(896), 1, + sym_string_literal, + STATE(1300), 1, + sym_expression, + STATE(2261), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3051] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, + sym_number_literal, + ACTIONS(965), 1, + anon_sym___extension__, + ACTIONS(1284), 1, + sym_identifier, + ACTIONS(1288), 1, + anon_sym_SEMI, + STATE(896), 1, + sym_string_literal, + STATE(1317), 1, + sym_expression, + STATE(2144), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3164] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, + sym_number_literal, + ACTIONS(965), 1, + anon_sym___extension__, + ACTIONS(1284), 1, + sym_identifier, + ACTIONS(2632), 1, + anon_sym_SEMI, + STATE(896), 1, + sym_string_literal, + STATE(1346), 1, + sym_expression, + STATE(2266), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3277] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1316), 1, + anon_sym___extension__, + ACTIONS(1667), 1, + anon_sym_LBRACE, + STATE(896), 1, + sym_string_literal, + STATE(897), 1, + sym_initializer_list, + STATE(928), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1168), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3390] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, + sym_number_literal, + ACTIONS(965), 1, + anon_sym___extension__, + ACTIONS(1284), 1, + sym_identifier, + ACTIONS(1667), 1, + anon_sym_LBRACE, + STATE(896), 1, + sym_string_literal, + STATE(1330), 1, + sym_expression, + STATE(2011), 1, + sym_initializer_list, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3503] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, + sym_number_literal, + ACTIONS(965), 1, + anon_sym___extension__, + ACTIONS(1284), 1, + sym_identifier, + ACTIONS(2634), 1, + anon_sym_SEMI, + STATE(896), 1, + sym_string_literal, + STATE(1344), 1, + sym_expression, + STATE(2250), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3616] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2420), 1, + sym_identifier, + ACTIONS(2636), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_alignas_qualifier, + STATE(917), 1, + sym_ms_call_modifier, + STATE(947), 1, + sym_type_specifier, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1455), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(345), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(922), 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(37), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [3726] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, + sym_string_literal, + STATE(1314), 1, + sym_expression, + STATE(1874), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3836] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3946] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2640), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4056] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2642), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4166] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2644), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4276] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4386] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2648), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4496] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2420), 1, + sym_identifier, + ACTIONS(2650), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_alignas_qualifier, + STATE(921), 1, + sym_ms_call_modifier, + STATE(947), 1, + sym_type_specifier, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1442), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(367), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(922), 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(37), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [4606] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2652), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4716] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, + sym_string_literal, + STATE(1312), 1, + sym_expression, + STATE(1874), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1131), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4826] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2420), 1, + sym_identifier, + ACTIONS(2654), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_alignas_qualifier, + STATE(919), 1, + sym_ms_call_modifier, + STATE(947), 1, + sym_type_specifier, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1443), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(182), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(922), 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(37), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [4936] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2420), 1, + sym_identifier, + ACTIONS(2656), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_alignas_qualifier, + STATE(907), 1, + sym_ms_call_modifier, + STATE(947), 1, + sym_type_specifier, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1452), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(457), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(922), 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(37), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5046] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5156] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5266] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, + sym_number_literal, + ACTIONS(965), 1, + anon_sym___extension__, + ACTIONS(1284), 1, + sym_identifier, + STATE(896), 1, + sym_string_literal, + STATE(1340), 1, + sym_expression, + STATE(1874), 1, + sym_comma_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5376] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + ACTIONS(2662), 1, + anon_sym_RBRACK, + STATE(896), 1, + sym_string_literal, + STATE(1141), 1, + sym_expression, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5486] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + anon_sym_const, + ACTIONS(2209), 1, + anon_sym_LPAREN2, + ACTIONS(2215), 1, + anon_sym_STAR, + ACTIONS(2666), 1, + anon_sym_EQ, + STATE(853), 1, + sym_string_literal, + STATE(970), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2218), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2664), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2668), 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(2213), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 11, + 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_alignas, + anon_sym__Alignas, + ACTIONS(2207), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [5577] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, + sym_number_literal, + ACTIONS(965), 1, + anon_sym___extension__, + ACTIONS(1284), 1, + sym_identifier, + STATE(896), 1, + sym_string_literal, + STATE(1325), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5684] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1416), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1284), 1, sym_identifier, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1043), 1, + STATE(1328), 1, sym_expression, - STATE(1729), 1, - sym_initializer_list, - ACTIONS(21), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(129), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5791] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, + sym_number_literal, + ACTIONS(965), 1, + anon_sym___extension__, + ACTIONS(1284), 1, + sym_identifier, + STATE(896), 1, + sym_string_literal, + STATE(1329), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -62834,13 +87321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62858,49 +87345,130 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [113] = 24, + [5898] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1284), 1, sym_identifier, - ACTIONS(2116), 1, - anon_sym_SEMI, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1050), 1, + STATE(1331), 1, sym_expression, - STATE(1795), 1, - sym_comma_expression, - ACTIONS(21), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(167), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1165), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(586), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6005] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(2135), 1, + sym_identifier, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, + anon_sym___extension__, + ACTIONS(2149), 1, + anon_sym_sizeof, + STATE(896), 1, + sym_string_literal, + STATE(1343), 1, + sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(2139), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2141), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2147), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -62923,13 +87491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62947,31 +87515,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [226] = 24, + [6112] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(43), 1, - anon_sym_LBRACE, ACTIONS(85), 1, anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(1047), 1, + STATE(932), 1, sym_expression, - STATE(1713), 1, - sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -62987,7 +87551,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -63012,13 +87576,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63036,47 +87600,128 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [339] = 24, + [6219] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1734), 1, + ACTIONS(1665), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1669), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - STATE(673), 1, - sym_string_literal, - STATE(686), 1, - sym_initializer_list, STATE(896), 1, + sym_string_literal, + STATE(1064), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1661), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6326] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, + sym_string_literal, + STATE(923), 1, + sym_expression, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -63101,13 +87746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63125,7 +87770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [452] = 24, + [6433] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63136,20 +87781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(2122), 1, - anon_sym_RPAREN, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(1059), 1, + STATE(925), 1, sym_expression, - STATE(1826), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -63165,7 +87806,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -63190,13 +87831,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63214,49 +87855,130 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [565] = 24, + [6540] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, sym_string_literal, - STATE(1027), 1, + STATE(1066), 1, sym_expression, - STATE(1714), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6647] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, + sym_string_literal, + STATE(1390), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, + ACTIONS(1308), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -63279,13 +88001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63303,47 +88025,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [678] = 24, + [6754] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1406), 1, + ACTIONS(1665), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1669), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - STATE(686), 1, - sym_initializer_list, - STATE(700), 1, - sym_expression, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(1070), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1661), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -63368,13 +88086,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63392,49 +88110,130 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [791] = 24, + [6861] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, sym_string_literal, - STATE(686), 1, - sym_initializer_list, - STATE(700), 1, + STATE(1072), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(898), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6968] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, + sym_string_literal, + STATE(1073), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -63457,13 +88256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63481,47 +88280,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [904] = 24, + [7075] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1284), 1, sym_identifier, - ACTIONS(2130), 1, - anon_sym_SEMI, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1055), 1, + STATE(1306), 1, sym_expression, - STATE(1871), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -63546,13 +88341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63570,49 +88365,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1017] = 24, + [7182] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2132), 1, - anon_sym_RPAREN, - STATE(673), 1, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, sym_string_literal, - STATE(1054), 1, + STATE(1045), 1, sym_expression, - STATE(1860), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -63635,13 +88426,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63659,49 +88450,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1130] = 24, + [7289] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2134), 1, - anon_sym_RPAREN, - STATE(673), 1, - sym_string_literal, - STATE(1068), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2670), 1, + anon_sym_LPAREN2, + STATE(926), 1, sym_expression, - STATE(1925), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -63724,13 +88511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63748,49 +88535,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1243] = 24, + [7396] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1294), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(1046), 1, + STATE(1252), 1, sym_expression, - STATE(1691), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, + ACTIONS(1308), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -63813,13 +88596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63837,49 +88620,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1356] = 24, + [7503] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2136), 1, - anon_sym_RPAREN, - STATE(673), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym_string_literal, - STATE(1048), 1, + STATE(1053), 1, sym_expression, - STATE(1973), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -63902,13 +88681,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63926,49 +88705,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1469] = 24, + [7610] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2138), 1, - anon_sym_COLON, - STATE(673), 1, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + STATE(896), 1, sym_string_literal, - STATE(1041), 1, + STATE(1155), 1, sym_expression, - STATE(1998), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -63991,13 +88766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64015,49 +88790,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1582] = 24, + [7717] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2140), 1, - anon_sym_RPAREN, - STATE(673), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym_string_literal, - STATE(1064), 1, + STATE(1054), 1, sym_expression, - STATE(1840), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64080,13 +88851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64104,49 +88875,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1695] = 24, + [7824] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2142), 1, - anon_sym_COLON, - STATE(673), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym_string_literal, - STATE(1065), 1, + STATE(1055), 1, sym_expression, - STATE(1883), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64169,13 +88936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64193,49 +88960,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1808] = 24, + [7931] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1804), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1681), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1683), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2091), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(686), 1, - sym_initializer_list, - STATE(896), 1, + STATE(1056), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64258,13 +89021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64282,49 +89045,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1921] = 24, + [8038] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2144), 1, - anon_sym_SEMI, - STATE(673), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym_string_literal, - STATE(1056), 1, + STATE(1057), 1, sym_expression, - STATE(1908), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64347,13 +89106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64371,49 +89130,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2034] = 24, + [8145] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2146), 1, - anon_sym_COLON, - STATE(673), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym_string_literal, - STATE(1070), 1, + STATE(1058), 1, sym_expression, - STATE(1911), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64436,13 +89191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64460,49 +89215,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2147] = 24, + [8252] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1752), 1, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1681), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1683), 1, anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2091), 1, anon_sym_LPAREN2, - STATE(686), 1, - sym_initializer_list, - STATE(700), 1, - sym_expression, - STATE(714), 1, + STATE(941), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(1059), 1, + sym_expression, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64525,13 +89276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64549,49 +89300,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2260] = 24, + [8359] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2154), 1, - anon_sym_SEMI, - STATE(673), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym_string_literal, - STATE(1075), 1, + STATE(1060), 1, sym_expression, - STATE(1939), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64614,13 +89361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64638,49 +89385,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2373] = 24, + [8466] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2156), 1, - anon_sym_COLON, - STATE(673), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym_string_literal, - STATE(1078), 1, + STATE(1061), 1, sym_expression, - STATE(1834), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64703,13 +89446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64727,49 +89470,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2486] = 24, + [8573] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2158), 1, - anon_sym_SEMI, - STATE(673), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym_string_literal, - STATE(1061), 1, + STATE(1049), 1, sym_expression, - STATE(1965), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64792,13 +89531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64816,49 +89555,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2599] = 24, + [8680] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(2160), 1, - anon_sym_RPAREN, - STATE(673), 1, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym_string_literal, - STATE(1066), 1, + STATE(1050), 1, sym_expression, - STATE(1857), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64881,13 +89616,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64905,49 +89640,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2712] = 24, + [8787] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(2162), 1, - anon_sym_SEMI, - STATE(673), 1, - sym_string_literal, - STATE(1077), 1, + ACTIONS(2105), 1, + anon_sym___extension__, + ACTIONS(2109), 1, + anon_sym_sizeof, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + STATE(926), 1, sym_expression, - STATE(1964), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2103), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -64970,13 +89701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64994,49 +89725,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2825] = 24, + [8894] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, anon_sym___extension__, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(1400), 1, + ACTIONS(2109), 1, anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(686), 1, - sym_initializer_list, - STATE(700), 1, + STATE(1211), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(2103), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65059,13 +89786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65083,49 +89810,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2938] = 24, + [9001] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(2168), 1, - anon_sym_COLON, - STATE(673), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, + anon_sym___extension__, + ACTIONS(2109), 1, + anon_sym_sizeof, + STATE(941), 1, sym_string_literal, - STATE(1073), 1, + STATE(1205), 1, sym_expression, - STATE(1997), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2103), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65148,13 +89871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65172,49 +89895,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3051] = 24, + [9108] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(2170), 1, - anon_sym_COLON, - STATE(673), 1, - sym_string_literal, - STATE(1039), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, + anon_sym___extension__, + ACTIONS(2109), 1, + anon_sym_sizeof, + STATE(923), 1, sym_expression, - STATE(1979), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2103), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65237,13 +89956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65261,49 +89980,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3164] = 24, + [9215] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(2172), 1, - anon_sym_SEMI, - STATE(673), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, + anon_sym___extension__, + ACTIONS(2109), 1, + anon_sym_sizeof, + STATE(941), 1, sym_string_literal, - STATE(1051), 1, + STATE(1206), 1, sym_expression, - STATE(1974), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2103), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65326,13 +90041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65350,47 +90065,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3277] = 23, + [9322] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2109), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2174), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(913), 1, + STATE(1207), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2103), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65413,13 +90126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65437,47 +90150,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3387] = 23, + [9429] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(2097), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, + anon_sym___extension__, + ACTIONS(2109), 1, + anon_sym_sizeof, + STATE(941), 1, sym_string_literal, - STATE(1019), 1, + STATE(1217), 1, sym_expression, - STATE(1671), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2103), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65500,13 +90211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65524,47 +90235,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3497] = 23, + [9536] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2109), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2176), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(913), 1, + STATE(1215), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2103), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65587,13 +90296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65611,47 +90320,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3607] = 23, + [9643] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2109), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(913), 1, + STATE(1210), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2103), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65674,13 +90381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65698,47 +90405,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3717] = 23, + [9750] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2109), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2180), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(913), 1, + STATE(1208), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2103), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65761,13 +90466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65785,134 +90490,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3827] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(2182), 1, - anon_sym_LBRACE, - STATE(683), 1, - sym_ms_call_modifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1148), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(326), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [3937] = 23, + [9857] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2109), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2184), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(913), 1, + STATE(1209), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2103), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -65935,13 +90551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65959,134 +90575,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4047] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(2186), 1, - anon_sym_LBRACE, - STATE(696), 1, - sym_ms_call_modifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1162), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(143), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [4157] = 23, + [9964] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2109), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2188), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(913), 1, + STATE(1216), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2103), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -66109,13 +90636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66133,45 +90660,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4267] = 23, + [10071] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1736), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2190), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(913), 1, + STATE(1257), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -66196,13 +90721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66220,47 +90745,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4377] = 23, + [10178] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2109), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(913), 1, + STATE(1212), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2103), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -66283,13 +90806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66307,134 +90830,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4487] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(2194), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_ms_call_modifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1153), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(291), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [4597] = 23, + [10285] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2097), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2109), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2196), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(941), 1, sym_string_literal, - STATE(913), 1, + STATE(1213), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2103), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -66457,13 +90891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66481,45 +90915,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4707] = 23, + [10392] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1665), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1669), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - ACTIONS(2198), 1, - anon_sym_RBRACK, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(913), 1, + STATE(932), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1661), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -66544,13 +90976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66568,132 +91000,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4817] = 23, + [10499] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(2200), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_ms_call_modifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1165), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(262), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [4927] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, sym_string_literal, - STATE(1081), 1, + STATE(1065), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -66716,13 +91061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66740,45 +91085,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5034] = 22, + [10606] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, sym_string_literal, - STATE(982), 1, + STATE(1074), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -66801,13 +91146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66825,45 +91170,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5141] = 22, + [10713] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, sym_string_literal, - STATE(991), 1, + STATE(925), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -66886,13 +91231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66910,43 +91255,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5248] = 22, + [10820] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(980), 1, + STATE(1272), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -66971,13 +91316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66995,45 +91340,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5355] = 22, + [10927] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(1095), 1, + STATE(923), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67056,13 +91401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67080,43 +91425,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5462] = 22, + [11034] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1665), 1, anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1669), 1, anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(968), 1, + STATE(933), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1661), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -67141,13 +91486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67165,215 +91510,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5569] = 22, + [11141] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1284), 1, sym_identifier, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(702), 1, + STATE(1307), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [5676] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_string_literal, - STATE(971), 1, - sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(845), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [5783] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_string_literal, - STATE(981), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, + ACTIONS(129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(167), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -67396,13 +91571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67420,7 +91595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5890] = 22, + [11248] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67431,15 +91606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(993), 1, + STATE(1374), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67456,7 +91631,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -67481,13 +91656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67505,7 +91680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5997] = 22, + [11355] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67516,15 +91691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(1021), 1, + STATE(923), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67541,7 +91716,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -67566,13 +91741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67590,7 +91765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6104] = 22, + [11462] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67601,15 +91776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(984), 1, + STATE(1375), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67626,7 +91801,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -67651,13 +91826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67675,7 +91850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6211] = 22, + [11569] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67686,15 +91861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(985), 1, + STATE(1376), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67711,7 +91886,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -67736,13 +91911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67760,7 +91935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6318] = 22, + [11676] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67771,15 +91946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(1067), 1, + STATE(1377), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67796,7 +91971,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -67821,13 +91996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67845,7 +92020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6425] = 22, + [11783] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67856,15 +92031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(1057), 1, + STATE(1348), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67881,7 +92056,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -67906,98 +92081,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [6532] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1406), 1, - anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_string_literal, - STATE(824), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(682), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68015,45 +92105,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6639] = 22, + [11890] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1316), 1, anon_sym___extension__, - ACTIONS(1736), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(895), 1, + STATE(1378), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -68076,13 +92166,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68100,45 +92190,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6746] = 22, + [11997] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1316), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(825), 1, + STATE(1379), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -68161,13 +92251,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68185,45 +92275,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6853] = 22, + [12104] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1316), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(826), 1, + STATE(1380), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -68246,13 +92336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68270,45 +92360,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6960] = 22, + [12211] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1316), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(842), 1, + STATE(1381), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -68331,13 +92421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68355,43 +92445,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7067] = 22, + [12318] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(828), 1, + STATE(1258), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68416,13 +92506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68440,43 +92530,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7174] = 22, + [12425] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(829), 1, + STATE(1259), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68501,13 +92591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68525,43 +92615,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7281] = 22, + [12532] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1665), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1669), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(830), 1, + STATE(1068), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1661), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68586,13 +92676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68610,43 +92700,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7388] = 22, + [12639] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(831), 1, + STATE(1260), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68671,13 +92761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68695,130 +92785,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7495] = 22, + [12746] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1681), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1683), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2091), 1, anon_sym_LPAREN2, - STATE(714), 1, - sym_string_literal, - STATE(832), 1, + STATE(923), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(682), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [7602] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - sym_identifier, - STATE(673), 1, - sym_string_literal, - STATE(1090), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2622), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -68841,13 +92846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68865,26 +92870,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7709] = 22, + [12853] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(813), 1, + STATE(1262), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -68892,16 +92897,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -68926,13 +92931,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68950,43 +92955,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7816] = 22, + [12960] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1284), 1, sym_identifier, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1099), 1, + STATE(932), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -69011,13 +93016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69035,128 +93040,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7923] = 22, + [13067] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(992), 1, + STATE(1263), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [8030] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1406), 1, - anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_string_literal, - STATE(833), 1, - sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -69181,13 +93101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69205,43 +93125,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8137] = 22, + [13174] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(702), 1, - sym_expression, - STATE(714), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, + STATE(1264), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -69266,13 +93186,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69290,43 +93210,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8244] = 22, + [13281] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(972), 1, + STATE(1265), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -69351,13 +93271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69375,43 +93295,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8351] = 22, + [13388] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1665), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1669), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1096), 1, + STATE(1063), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1661), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -69436,13 +93356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69460,45 +93380,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8458] = 22, + [13495] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1812), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1284), 1, + sym_identifier, + STATE(896), 1, sym_string_literal, - STATE(1028), 1, + STATE(925), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1806), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -69521,13 +93441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69545,45 +93465,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8565] = 22, + [13602] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1306), 1, anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(834), 1, + STATE(1240), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -69606,13 +93526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69630,45 +93550,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8672] = 22, + [13709] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1294), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(1098), 1, + STATE(1233), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, + ACTIONS(1308), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -69691,13 +93611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69715,45 +93635,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8779] = 22, + [13816] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(1296), 1, anon_sym_LPAREN2, - STATE(708), 1, - sym_expression, - STATE(714), 1, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(1234), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -69776,13 +93696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69800,45 +93720,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8886] = 22, + [13923] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1294), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(986), 1, + STATE(1235), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, + ACTIONS(1308), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -69861,13 +93781,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69885,45 +93805,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8993] = 22, + [14030] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(1296), 1, anon_sym_LPAREN2, - STATE(704), 1, - sym_expression, - STATE(714), 1, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(1236), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -69946,13 +93866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69970,45 +93890,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9100] = 22, + [14137] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(2202), 1, + ACTIONS(1296), 1, anon_sym_LPAREN2, - STATE(705), 1, - sym_expression, - STATE(714), 1, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(1237), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70031,13 +93951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70055,45 +93975,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9207] = 22, + [14244] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(1296), 1, anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(987), 1, + STATE(932), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70116,13 +94036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70140,45 +94060,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9314] = 22, + [14351] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(1296), 1, anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(973), 1, + STATE(1250), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70201,13 +94121,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70225,45 +94145,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9421] = 22, + [14458] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1294), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(704), 1, + STATE(1248), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, + ACTIONS(1308), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70286,13 +94206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70310,122 +94230,130 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9528] = 14, + [14565] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1770), 1, - anon_sym_const, - ACTIONS(1774), 1, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1294), 1, + sym_identifier, + ACTIONS(1296), 1, anon_sym_LPAREN2, - ACTIONS(1780), 1, - anon_sym_STAR, - ACTIONS(1790), 1, - anon_sym_EQ, - STATE(630), 1, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(768), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1783), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2204), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + STATE(1247), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 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(1778), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1786), 11, - 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_alignas, - anon_sym__Alignas, - ACTIONS(1772), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [9619] = 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [14672] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(1296), 1, anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(974), 1, + STATE(925), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70448,13 +94376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70472,45 +94400,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9726] = 22, + [14779] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1294), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(969), 1, + STATE(1246), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1298), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1300), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, + ACTIONS(1308), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70533,13 +94461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70557,43 +94485,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9833] = 22, + [14886] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(975), 1, + STATE(1268), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -70618,13 +94546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70642,45 +94570,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9940] = 22, + [14993] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(2097), 1, sym_identifier, - STATE(673), 1, - sym_string_literal, - STATE(983), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, + anon_sym___extension__, + ACTIONS(2109), 1, + anon_sym_sizeof, + STATE(932), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2103), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70703,13 +94631,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70727,43 +94655,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10047] = 22, + [15100] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(976), 1, + STATE(1387), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -70788,13 +94716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70812,45 +94740,215 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10154] = 22, + [15207] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(816), 1, + STATE(1366), 1, sym_expression, - ACTIONS(25), 2, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(2139), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2141), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2147), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(103), 2, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1161), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [15314] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(2097), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, + anon_sym___extension__, + ACTIONS(2109), 1, + anon_sym_sizeof, + STATE(925), 1, + sym_expression, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1308), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(2101), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2103), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2107), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1081), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(900), 17, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_extension_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [15421] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(1280), 1, + sym_number_literal, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1681), 1, + anon_sym___extension__, + ACTIONS(1683), 1, + anon_sym_sizeof, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + STATE(932), 1, + sym_expression, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -70873,13 +94971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70897,7 +94995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10261] = 22, + [15528] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70908,15 +95006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(1023), 1, + STATE(1389), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70933,7 +95031,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -70958,13 +95056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70982,45 +95080,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10368] = 22, + [15635] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1316), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(702), 1, - sym_expression, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, + STATE(1382), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1282), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71043,13 +95141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71067,45 +95165,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10475] = 22, + [15742] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1681), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1683), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2091), 1, anon_sym_LPAREN2, - STATE(673), 1, - sym_string_literal, - STATE(817), 1, + STATE(925), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71128,13 +95226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71152,45 +95250,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10582] = 22, + [15849] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1306), 1, anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(708), 1, - sym_expression, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(1241), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71213,13 +95311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71237,43 +95335,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10689] = 22, + [15956] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(704), 1, - sym_expression, - STATE(714), 1, + STATE(896), 1, sym_string_literal, + STATE(1261), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -71298,13 +95396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71322,45 +95420,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10796] = 22, + [16063] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(1302), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(1306), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2674), 1, anon_sym_LPAREN2, - STATE(705), 1, - sym_expression, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(926), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71383,13 +95481,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71407,45 +95505,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10903] = 22, + [16170] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(988), 1, + STATE(1269), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71468,13 +95566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71492,43 +95590,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11010] = 22, + [16277] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1408), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(835), 1, + STATE(1372), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1404), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -71553,13 +95651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71577,45 +95675,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11117] = 22, + [16384] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(1296), 1, anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(1302), 1, + anon_sym___extension__, + ACTIONS(1306), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(977), 1, + STATE(1242), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71638,13 +95736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71662,7 +95760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11224] = 22, + [16491] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71673,15 +95771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1316), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(990), 1, + STATE(1391), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71698,7 +95796,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -71723,13 +95821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1168), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71747,45 +95845,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11331] = 22, + [16598] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1082), 1, + STATE(1281), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71808,13 +95906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71832,45 +95930,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11438] = 22, + [16705] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(820), 1, + STATE(1155), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71893,13 +95991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71917,45 +96015,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11545] = 22, + [16812] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(2135), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, + anon_sym___extension__, + ACTIONS(2149), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(989), 1, + STATE(1282), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(2139), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2141), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2147), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -71978,13 +96076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72002,45 +96100,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11652] = 22, + [16919] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(821), 1, + STATE(1283), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72063,13 +96161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72087,45 +96185,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11759] = 22, + [17026] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(702), 1, + STATE(1284), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72148,13 +96246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72172,45 +96270,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11866] = 22, + [17133] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(2135), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, + anon_sym___extension__, + ACTIONS(2149), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(1108), 1, + STATE(1285), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(2139), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2141), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2147), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72233,13 +96331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72257,45 +96355,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11973] = 22, + [17240] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2137), 1, anon_sym_LPAREN2, - STATE(714), 1, + ACTIONS(2145), 1, + anon_sym___extension__, + ACTIONS(2149), 1, + anon_sym_sizeof, + STATE(896), 1, sym_string_literal, - STATE(978), 1, + STATE(1286), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72318,13 +96416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72342,45 +96440,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12080] = 22, + [17347] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(837), 1, + STATE(1287), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72403,13 +96501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72427,45 +96525,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12187] = 22, + [17454] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(708), 1, + STATE(1288), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72488,13 +96586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72512,45 +96610,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12294] = 22, + [17561] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1029), 1, + STATE(1289), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72573,13 +96671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72597,45 +96695,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12401] = 22, + [17668] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1306), 1, anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1030), 1, + STATE(1356), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72658,13 +96756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72682,45 +96780,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12508] = 22, + [17775] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2676), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(895), 1, + STATE(1150), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72743,13 +96841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72767,45 +96865,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12615] = 22, + [17882] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1031), 1, + STATE(1383), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72828,13 +96926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72852,43 +96950,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12722] = 22, + [17989] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1665), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1669), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2678), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1032), 1, + STATE(926), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1661), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -72913,13 +97011,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72937,45 +97035,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12829] = 22, + [18096] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1033), 1, + STATE(1292), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -72998,13 +97096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73022,45 +97120,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12936] = 22, + [18203] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1034), 1, + STATE(1293), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73083,13 +97181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73107,45 +97205,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13043] = 22, + [18310] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1035), 1, + STATE(1294), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73168,13 +97266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73192,45 +97290,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13150] = 22, + [18417] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2680), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1036), 1, + STATE(1150), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73253,13 +97351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73277,45 +97375,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13257] = 22, + [18524] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1037), 1, + STATE(1157), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73338,13 +97436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73362,45 +97460,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13364] = 22, + [18631] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1038), 1, + STATE(1133), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73423,13 +97521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73447,215 +97545,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13471] = 22, + [18738] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1406), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1408), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(707), 1, - sym_expression, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(1134), 1, + sym_expression, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1404), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2128), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(682), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [13578] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1752), 1, - anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_string_literal, - STATE(979), 1, - sym_expression, - ACTIONS(103), 2, + ACTIONS(1671), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(845), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [13685] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, - anon_sym___extension__, - ACTIONS(1812), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, - sym_string_literal, - STATE(1040), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1806), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1808), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(2362), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73678,13 +97606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73702,45 +97630,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13792] = 22, + [18845] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(1831), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1042), 1, + STATE(1135), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73763,13 +97691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73787,45 +97715,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13899] = 22, + [18952] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(899), 1, + STATE(1136), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73848,13 +97776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73872,45 +97800,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14006] = 22, + [19059] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(900), 1, + STATE(1143), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -73933,13 +97861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73957,45 +97885,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14113] = 22, + [19166] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(901), 1, + STATE(1144), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74018,13 +97946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74042,45 +97970,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14220] = 22, + [19273] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(902), 1, + STATE(1145), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74103,13 +98031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74127,45 +98055,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14327] = 22, + [19380] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(903), 1, + STATE(1153), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74188,13 +98116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74212,45 +98140,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14434] = 22, + [19487] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(904), 1, + STATE(1158), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74273,13 +98201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74297,45 +98225,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14541] = 22, + [19594] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(905), 1, + STATE(1138), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74358,13 +98286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74382,45 +98310,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14648] = 22, + [19701] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(906), 1, + STATE(1140), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74443,13 +98371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74467,43 +98395,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14755] = 22, + [19808] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1736), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(907), 1, + STATE(1291), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74528,13 +98456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74552,45 +98480,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14862] = 22, + [19915] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(2135), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN2, + ACTIONS(2145), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2149), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(909), 1, + STATE(1147), 1, sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(2139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2141), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2147), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74613,13 +98541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1161), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74637,43 +98565,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14969] = 22, + [20022] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1736), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(910), 1, + STATE(1357), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -74698,13 +98626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74722,45 +98650,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15076] = 22, + [20129] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(912), 1, + STATE(1140), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74783,13 +98711,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74807,45 +98735,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15183] = 22, + [20236] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(2127), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(2129), 1, anon_sym_sizeof, - ACTIONS(2118), 1, + ACTIONS(2151), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(914), 1, + STATE(1147), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(2125), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74868,13 +98796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74892,45 +98820,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15290] = 22, + [20343] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1734), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1736), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1284), 1, + sym_identifier, + STATE(896), 1, sym_string_literal, - STATE(915), 1, + STATE(1274), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -74953,13 +98881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74977,45 +98905,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15397] = 22, + [20450] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(1734), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, anon_sym___extension__, - ACTIONS(1736), 1, + ACTIONS(1306), 1, anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(911), 1, + STATE(1359), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75038,13 +98966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75062,45 +98990,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15504] = 22, + [20557] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(967), 1, + STATE(1361), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75123,13 +99051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75147,26 +99075,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15611] = 22, + [20664] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(704), 1, + STATE(1305), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -75174,16 +99102,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -75208,13 +99136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75232,26 +99160,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15718] = 22, + [20771] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2210), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(705), 1, + STATE(1365), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -75259,16 +99187,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -75293,13 +99221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75317,45 +99245,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15825] = 22, + [20878] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(1083), 1, + STATE(932), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75378,13 +99306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75402,45 +99330,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15932] = 22, + [20985] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1306), 1, anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(836), 1, + STATE(1362), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75463,13 +99391,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75487,45 +99415,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16039] = 22, + [21092] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - sym_identifier, - ACTIONS(2212), 1, + ACTIONS(1327), 1, anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym___extension__, + STATE(896), 1, sym_string_literal, - STATE(705), 1, + STATE(1273), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1329), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1331), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75548,13 +99476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75572,45 +99500,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16146] = 22, + [21199] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(2097), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, + anon_sym___extension__, + ACTIONS(2109), 1, + anon_sym_sizeof, + STATE(941), 1, sym_string_literal, - STATE(1088), 1, + STATE(1204), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2101), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2103), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2107), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75633,13 +99561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1081), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75657,45 +99585,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16253] = 22, + [21306] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(673), 1, + ACTIONS(2127), 1, + anon_sym___extension__, + ACTIONS(2129), 1, + anon_sym_sizeof, + ACTIONS(2151), 1, + anon_sym_LPAREN2, + STATE(896), 1, sym_string_literal, - STATE(1079), 1, + STATE(1141), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1282), 2, + sym_true, + sym_false, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2123), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(83), 2, + ACTIONS(2125), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2153), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, + ACTIONS(2362), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75718,13 +99646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75742,45 +99670,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16360] = 22, + [21413] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1655), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1681), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1683), 1, anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2091), 1, anon_sym_LPAREN2, - STATE(673), 1, - sym_string_literal, - STATE(819), 1, + STATE(933), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + STATE(941), 1, + sym_string_literal, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(2095), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2622), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75803,13 +99731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75827,45 +99755,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16467] = 22, + [21520] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1416), 1, - anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(673), 1, + ACTIONS(1665), 1, + anon_sym___extension__, + ACTIONS(1669), 1, + anon_sym_sizeof, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + STATE(896), 1, sym_string_literal, - STATE(1097), 1, + STATE(1044), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1661), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1671), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -75888,13 +99816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(898), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75912,215 +99840,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16574] = 22, + [21627] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1812), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1284), 1, + sym_identifier, + STATE(896), 1, sym_string_literal, - STATE(912), 1, + STATE(1316), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1806), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1808), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1835), 2, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1847), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(932), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16681] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1734), 1, - anon_sym___extension__, - ACTIONS(1736), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(673), 1, - sym_string_literal, - STATE(913), 1, - sym_expression, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1732), 2, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2120), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(87), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(97), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(682), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(693), 17, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_extension_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16788] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, - anon_sym___extension__, - ACTIONS(1812), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, - sym_string_literal, - STATE(914), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1806), 2, + ACTIONS(129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(167), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -76143,13 +99901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76167,45 +99925,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16895] = 22, + [21734] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1804), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(1810), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, anon_sym___extension__, - ACTIONS(1812), 1, + ACTIONS(1306), 1, anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(915), 1, + STATE(1358), 1, sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1806), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -76228,13 +99986,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76252,45 +100010,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17002] = 22, + [21841] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1810), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1812), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1284), 1, + sym_identifier, + STATE(896), 1, sym_string_literal, - STATE(1060), 1, + STATE(923), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1806), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1808), 2, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1847), 2, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -76313,13 +100071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(932), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76337,26 +100095,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17109] = 22, + [21948] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1396), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1284), 1, + sym_identifier, + STATE(896), 1, sym_string_literal, - STATE(839), 1, + STATE(1318), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76364,18 +100122,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1390), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -76398,13 +100156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76422,26 +100180,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17216] = 22, + [22055] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1327), 1, + anon_sym_LPAREN2, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(827), 1, + STATE(925), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76449,16 +100207,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76483,13 +100241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76507,26 +100265,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17323] = 22, + [22162] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1396), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + ACTIONS(1284), 1, + sym_identifier, + STATE(896), 1, sym_string_literal, - STATE(815), 1, + STATE(1319), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76534,18 +100292,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1390), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -76568,13 +100326,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76592,26 +100350,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17430] = 22, + [22269] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1338), 1, + anon_sym_sizeof, + ACTIONS(2131), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(2133), 1, anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2164), 1, + ACTIONS(2682), 1, anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(838), 1, + STATE(926), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76619,16 +100377,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1329), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1331), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(93), 3, @@ -76653,13 +100411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1131), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76677,43 +100435,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17537] = 22, + [22376] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(85), 1, - anon_sym_sizeof, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1416), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1746), 1, + ACTIONS(1284), 1, sym_identifier, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(708), 1, + STATE(1322), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(83), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(127), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(173), 2, sym_true, sym_false, ACTIONS(93), 3, @@ -76738,13 +100496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76762,45 +100520,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17644] = 22, + [22483] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(125), 1, + anon_sym_LPAREN2, + ACTIONS(169), 1, + anon_sym_sizeof, + ACTIONS(171), 1, sym_number_literal, - ACTIONS(1752), 1, + ACTIONS(965), 1, anon_sym___extension__, - ACTIONS(1754), 1, - anon_sym_sizeof, - ACTIONS(2148), 1, + ACTIONS(1284), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(714), 1, + STATE(896), 1, sym_string_literal, - STATE(970), 1, + STATE(1324), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(127), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2152), 2, + ACTIONS(129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(167), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(173), 2, + sym_true, + sym_false, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -76823,13 +100581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(845), 5, + STATE(1165), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(586), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76847,45 +100605,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17751] = 22, + [22590] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_offsetof, ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(161), 1, + ACTIONS(1280), 1, sym_number_literal, - ACTIONS(1386), 1, + ACTIONS(1294), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1296), 1, + anon_sym_LPAREN2, + ACTIONS(1302), 1, anon_sym___extension__, - ACTIONS(1400), 1, + ACTIONS(1306), 1, anon_sym_sizeof, - ACTIONS(2164), 1, - anon_sym_LPAREN2, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(707), 1, + STATE(923), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, + ACTIONS(1282), 2, sym_true, sym_false, - ACTIONS(1390), 2, + ACTIONS(1298), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1392), 2, + ACTIONS(1300), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2166), 2, + ACTIONS(1304), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1308), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(93), 3, anon_sym_asm, anon_sym___asm__, @@ -76908,13 +100666,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(682), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(693), 17, + STATE(900), 17, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76932,21 +100690,21 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17858] = 6, + [22697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2684), 1, sym_identifier, - STATE(628), 2, + STATE(855), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2223), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2221), 17, + ACTIONS(2688), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76964,7 +100722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2219), 33, + ACTIONS(2686), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76998,21 +100756,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17930] = 6, + [22769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, + ACTIONS(2690), 1, sym_identifier, - STATE(628), 2, + STATE(854), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(99), 5, + ACTIONS(2697), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2230), 17, + ACTIONS(2695), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77030,7 +100788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2228), 33, + ACTIONS(2693), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77064,12 +100822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18002] = 6, + [22841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2700), 1, sym_identifier, - STATE(629), 2, + STATE(854), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(99), 5, @@ -77078,7 +100836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2236), 17, + ACTIONS(2704), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77096,7 +100854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2234), 33, + ACTIONS(2702), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77130,10 +100888,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18074] = 5, + [22913] = 25, ACTIONS(3), 1, sym_comment, - STATE(630), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2354), 1, + anon_sym_enum, + ACTIONS(2706), 1, + sym_identifier, + ACTIONS(2708), 1, + anon_sym_RPAREN, + STATE(502), 1, + sym_alignas_qualifier, + STATE(947), 1, + sym_type_specifier, + STATE(1077), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1407), 1, + sym__declaration_specifiers, + STATE(1825), 1, + sym_variadic_parameter, + STATE(1860), 1, + sym_parameter_declaration, + STATE(2129), 1, + sym_compound_statement, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2350), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(929), 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(37), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23022] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(853), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -77141,7 +100983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1778), 18, + ACTIONS(2213), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77160,7 +101002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1772), 33, + ACTIONS(2207), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77194,42 +101036,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18143] = 25, + [23091] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1808), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(1810), 1, anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2240), 1, + ACTIONS(2340), 1, anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(2354), 1, + anon_sym_enum, + ACTIONS(2420), 1, + sym_identifier, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1127), 1, + STATE(1077), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1407), 1, sym__declaration_specifiers, - STATE(1531), 1, - sym_variadic_parameter, - STATE(1603), 1, - sym_parameter_declaration, - STATE(1957), 1, + STATE(2129), 1, sym_compound_statement, ACTIONS(35), 2, anon_sym___attribute__, @@ -77237,18 +101075,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + STATE(1860), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(2350), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(929), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77256,18 +101097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -77278,68 +101108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [18252] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1821), 1, - anon_sym_RPAREN, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1127), 1, - sym__declaration_specifiers, - STATE(1957), 1, - sym_compound_statement, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1603), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -77350,21 +101119,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [18359] = 3, + [23198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 22, + ACTIONS(961), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2175), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77380,14 +101144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2244), 34, + ACTIONS(2173), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77403,9 +101163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -77422,10 +101181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18423] = 3, + [23264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 22, + ACTIONS(2710), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77448,7 +101207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2248), 34, + ACTIONS(2712), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77483,10 +101242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18487] = 3, + [23328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2250), 22, + ACTIONS(2714), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77509,7 +101268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2252), 34, + ACTIONS(2716), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77544,10 +101303,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18551] = 3, + [23392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2718), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2720), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [23456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 22, + ACTIONS(2722), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77570,7 +101390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2256), 34, + ACTIONS(2724), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77605,10 +101425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18615] = 3, + [23520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 18, + ACTIONS(2726), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77624,10 +101444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2260), 38, + ACTIONS(2728), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77643,8 +101467,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -77661,15 +101486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [18679] = 3, + [23584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 22, + ACTIONS(2730), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77692,7 +101512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2264), 34, + ACTIONS(2732), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77727,10 +101547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18743] = 3, + [23648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 22, + ACTIONS(2734), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77753,7 +101573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2268), 34, + ACTIONS(2736), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77788,10 +101608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18807] = 3, + [23712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 22, + ACTIONS(2738), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77814,7 +101634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2272), 34, + ACTIONS(2740), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77849,10 +101669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18871] = 3, + [23776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 18, + ACTIONS(2742), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77868,10 +101688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2276), 38, + ACTIONS(2744), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77887,8 +101711,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -77905,15 +101730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [18935] = 3, + [23840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 22, + ACTIONS(2746), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77929,14 +101749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2280), 34, + ACTIONS(2748), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77952,9 +101768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -77971,10 +101786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18999] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [23904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 22, + ACTIONS(2750), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77997,7 +101817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2284), 34, + ACTIONS(2752), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78032,10 +101852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19063] = 3, + [23968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 22, + ACTIONS(2754), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78058,7 +101878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2288), 34, + ACTIONS(2756), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78093,103 +101913,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19127] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2306), 1, - anon_sym___declspec, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(2300), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2309), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2292), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(646), 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(2294), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - ACTIONS(2297), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(2290), 17, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [19207] = 22, + [24032] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(506), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(299), 1, + STATE(178), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78197,21 +101948,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(873), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78219,18 +101970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78241,34 +101981,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [19308] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24133] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(506), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(301), 1, + STATE(186), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78276,21 +102027,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(651), 2, + STATE(891), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78298,18 +102049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78320,34 +102060,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [19409] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24234] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(133), 1, + ACTIONS(440), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(137), 1, + STATE(314), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78355,21 +102106,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(654), 2, + STATE(891), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78377,18 +102128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78399,34 +102139,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [19510] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24335] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(378), 1, + ACTIONS(388), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(275), 1, + STATE(322), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78434,21 +102185,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(891), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78456,18 +102207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78478,34 +102218,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [19611] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24436] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(506), 1, + ACTIONS(388), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(307), 1, + STATE(326), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78513,21 +102264,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(881), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78535,18 +102286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78557,34 +102297,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [19712] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24537] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(378), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(264), 1, + STATE(168), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78592,21 +102343,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(650), 2, + STATE(882), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78614,18 +102365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78636,64 +102376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [19813] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - STATE(321), 1, - sym_compound_statement, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1159), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(657), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -78704,45 +102387,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [19914] = 22, + [24638] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(133), 1, + ACTIONS(388), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(127), 1, + STATE(368), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78750,21 +102422,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(875), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78772,18 +102444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78794,34 +102455,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20015] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24739] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, + ACTIONS(45), 1, + anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(132), 1, + STATE(418), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78829,21 +102501,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(656), 2, + STATE(883), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78851,18 +102523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78873,34 +102534,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20116] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24840] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(133), 1, + ACTIONS(440), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(124), 1, + STATE(317), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78908,21 +102580,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(887), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78930,18 +102602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78952,34 +102613,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20217] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24941] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, STATE(343), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -78987,21 +102659,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(891), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79009,18 +102681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79031,34 +102692,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20318] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25042] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(506), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(293), 1, + STATE(176), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79066,21 +102738,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(647), 2, + STATE(891), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79088,18 +102760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79110,34 +102771,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20419] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25143] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, + ACTIONS(45), 1, + anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(277), 1, + STATE(388), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79145,21 +102817,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(661), 2, + STATE(891), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79167,18 +102839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79189,34 +102850,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20520] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25244] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(324), 1, + STATE(394), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79224,21 +102896,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(885), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79246,18 +102918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79268,34 +102929,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20621] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25345] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, + ACTIONS(45), 1, + anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(284), 1, + STATE(429), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79303,21 +102975,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, + STATE(891), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79325,18 +102997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79347,34 +103008,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20722] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25446] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(440), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(345), 1, + STATE(351), 1, sym_compound_statement, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -79382,21 +103054,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(660), 2, + STATE(874), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79404,18 +103076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79426,55 +103087,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20823] = 22, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25547] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(440), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2312), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(720), 1, + STATE(348), 1, + sym_compound_statement, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1127), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, sym__declaration_specifiers, - STATE(1743), 1, - sym_parameter_declaration, - STATE(1748), 1, - sym_variadic_parameter, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + STATE(891), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79482,18 +103155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79504,54 +103166,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20923] = 21, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25648] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 1, - sym_identifier, - ACTIONS(2326), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2329), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(2332), 1, - anon_sym_LBRACE, - ACTIONS(2340), 1, - sym_primitive_type, - ACTIONS(2343), 1, - anon_sym_enum, - ACTIONS(2346), 1, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1808), 1, anon_sym_struct, - ACTIONS(2349), 1, + ACTIONS(1810), 1, anon_sym_union, - STATE(720), 1, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2354), 1, + anon_sym_enum, + ACTIONS(2420), 1, + sym_identifier, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1159), 1, + STATE(1077), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1407), 1, sym__declaration_specifiers, - ACTIONS(2323), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2337), 2, + ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(664), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2334), 4, + STATE(2023), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(2350), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(929), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79559,7 +103232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2317), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79570,7 +103243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - ACTIONS(2320), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -79581,54 +103254,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21021] = 21, + [25746] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1808), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(1810), 1, anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1946), 1, + ACTIONS(2354), 1, + anon_sym_enum, + ACTIONS(2758), 1, sym_identifier, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1127), 1, + STATE(1077), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1407), 1, sym__declaration_specifiers, + STATE(1974), 1, + sym_variadic_parameter, + STATE(2023), 1, + sym_parameter_declaration, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1743), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, + ACTIONS(2350), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(929), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79636,18 +103310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79658,10 +103321,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [21119] = 3, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 9, + ACTIONS(2762), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79671,11 +103345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2352), 45, + ACTIONS(2760), 45, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -79698,7 +103373,6 @@ 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, @@ -79717,20 +103391,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - [21181] = 8, + [25908] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2764), 1, + sym_identifier, + ACTIONS(2776), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2779), 1, + anon_sym___declspec, + ACTIONS(2782), 1, + anon_sym_LBRACE, + ACTIONS(2790), 1, + sym_primitive_type, + ACTIONS(2793), 1, + anon_sym_enum, + ACTIONS(2796), 1, + anon_sym_struct, + ACTIONS(2799), 1, + anon_sym_union, + STATE(502), 1, + sym_alignas_qualifier, + STATE(947), 1, + sym_type_specifier, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1438), 1, + sym__declaration_specifiers, + ACTIONS(2773), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(891), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2784), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(922), 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(2767), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2770), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26006] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 1, + ACTIONS(2809), 1, anon_sym_static, - STATE(703), 1, + STATE(598), 1, sym_alignas_qualifier, - ACTIONS(2366), 2, + ACTIONS(2812), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(667), 2, + STATE(892), 2, sym_type_qualifier, aux_sym_array_declarator_repeat1, - ACTIONS(2360), 10, + ACTIONS(2806), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79741,7 +103492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - ACTIONS(2356), 18, + ACTIONS(2802), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -79760,7 +103511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(2358), 19, + ACTIONS(2804), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -79780,10 +103531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [21252] = 3, + [26077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 21, + ACTIONS(2817), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -79805,7 +103556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1738), 32, + ACTIONS(2815), 32, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -79838,126 +103589,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [21313] = 3, + [26138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + ACTIONS(961), 16, + anon_sym_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_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2369), 32, + ACTIONS(2175), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [21374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1744), 21, - 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + sym_identifier, + ACTIONS(2173), 20, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, 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(1742), 32, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [21435] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + [26200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 18, + ACTIONS(2815), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79976,7 +103669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2371), 34, + ACTIONS(2817), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80011,73 +103704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21495] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(2380), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2375), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2377), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - ACTIONS(2373), 30, - 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_auto, - 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_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21563] = 6, + [26260] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 1, + ACTIONS(2819), 1, sym_identifier, - STATE(630), 1, + STATE(853), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -80085,7 +103717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2387), 16, + ACTIONS(2823), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -80102,7 +103734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2385), 29, + ACTIONS(2821), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80132,102 +103764,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21629] = 19, + [26326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2825), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1255), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(2827), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2213), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [21720] = 19, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2207), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26444] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1262), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1522), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -80235,18 +103907,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80254,18 +103926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80276,10 +103937,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [21811] = 3, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 18, + ACTIONS(2213), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80298,7 +103970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2391), 33, + ACTIONS(2207), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80332,10 +104004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21870] = 3, + [26594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 18, + ACTIONS(2829), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80354,7 +104026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2395), 33, + ACTIONS(2831), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80388,10 +104060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21929] = 3, + [26653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 18, + ACTIONS(2833), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80410,7 +104082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2399), 33, + ACTIONS(2835), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80444,10 +104116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21988] = 3, + [26712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2401), 18, + ACTIONS(2837), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80466,7 +104138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2403), 33, + ACTIONS(2839), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80500,10 +104172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22047] = 3, + [26771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2405), 18, + ACTIONS(2841), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80522,7 +104194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2407), 33, + ACTIONS(2843), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80556,10 +104228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22106] = 3, + [26830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 18, + ACTIONS(2845), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80578,7 +104250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2411), 33, + ACTIONS(2847), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80612,10 +104284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22165] = 3, + [26889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1778), 18, + ACTIONS(2849), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80634,7 +104306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1772), 33, + ACTIONS(2851), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80668,30 +104340,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22224] = 19, + [26948] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1267), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1557), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -80699,18 +104371,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80718,18 +104390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80740,10 +104401,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [22315] = 3, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [27039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 18, + ACTIONS(2853), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80762,7 +104434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2415), 33, + ACTIONS(2855), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80796,10 +104468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22374] = 3, + [27098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2417), 18, + ACTIONS(2857), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80818,7 +104490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2419), 33, + ACTIONS(2859), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80852,10 +104524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22433] = 3, + [27157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2421), 18, + ACTIONS(2861), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80874,7 +104546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2423), 33, + ACTIONS(2863), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80908,122 +104580,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22492] = 3, + [27216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2427), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(961), 50, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2431), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_const, + 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_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_EQ, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22610] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + [27275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 18, + ACTIONS(2865), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81042,7 +104658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2435), 33, + ACTIONS(2867), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81076,10 +104692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22669] = 3, + [27334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 18, + ACTIONS(2869), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81098,7 +104714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2439), 33, + ACTIONS(2871), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81132,82 +104748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22728] = 19, + [27393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, - sym_type_specifier, - STATE(1246), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(710), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [22819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2441), 18, + ACTIONS(2873), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81226,7 +104770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2443), 33, + ACTIONS(2875), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81260,10 +104804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22878] = 3, + [27452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1778), 18, + ACTIONS(2877), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81282,7 +104826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1772), 33, + ACTIONS(2879), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -81316,30 +104860,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22937] = 19, + [27511] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1252), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1540), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -81347,18 +104891,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81366,18 +104910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81388,30 +104921,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [23028] = 19, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [27602] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1269), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1556), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -81419,18 +104963,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81438,7 +104982,18 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(37), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81449,7 +105004,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + [27693] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2420), 1, + sym_identifier, + STATE(502), 1, + sym_alignas_qualifier, + STATE(947), 1, + sym_type_specifier, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1530), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(922), 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(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81460,30 +105065,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [23119] = 19, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [27784] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1261), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1559), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -81491,18 +105107,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81510,7 +105126,18 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(37), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81521,7 +105148,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + [27875] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2420), 1, + sym_identifier, + STATE(502), 1, + sym_alignas_qualifier, + STATE(947), 1, + sym_type_specifier, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1537), 1, + sym__declaration_specifiers, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(922), 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(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81532,30 +105209,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [23210] = 19, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [27966] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_enum, ACTIONS(57), 1, anon_sym_struct, ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, + ACTIONS(2420), 1, sym_identifier, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(727), 1, + STATE(947), 1, sym_type_specifier, - STATE(1259), 1, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1553), 1, sym__declaration_specifiers, ACTIONS(35), 2, anon_sym___attribute__, @@ -81563,18 +105251,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + ACTIONS(801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(772), 5, + STATE(999), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(710), 7, + STATE(922), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81582,7 +105270,18 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(37), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81593,7 +105292,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + [28057] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(803), 1, + sym_primitive_type, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2420), 1, + sym_identifier, + STATE(502), 1, + sym_alignas_qualifier, + STATE(949), 1, + sym_type_specifier, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(1075), 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(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81604,10 +105351,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [23301] = 3, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [28145] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 18, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2881), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81624,17 +105394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___attribute, anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2447), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2883), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81643,8 +105410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81657,80 +105422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2451), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2449), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23418] = 8, + [28213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2453), 17, + ACTIONS(2893), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81748,13 +105443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2455), 26, + ACTIONS(2895), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81762,7 +105458,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81775,10 +105473,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23486] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [28271] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 17, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2897), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81796,14 +105510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2467), 33, + ACTIONS(2899), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81811,9 +105524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81826,26 +105537,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23544] = 8, + [28339] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 17, + ACTIONS(2901), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81863,7 +105570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2471), 26, + ACTIONS(2903), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81890,77 +105597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1716), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1714), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23670] = 8, + [28407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2473), 17, + ACTIONS(2905), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81978,13 +105618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2475), 26, + ACTIONS(2907), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81992,7 +105633,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -82005,22 +105648,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23738] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [28465] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2477), 17, + ACTIONS(2909), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82038,7 +105685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2479), 26, + ACTIONS(2911), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -82065,10 +105712,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23806] = 3, + [28533] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2354), 1, + anon_sym_enum, + ACTIONS(2420), 1, + sym_identifier, + STATE(502), 1, + sym_alignas_qualifier, + STATE(949), 1, + sym_type_specifier, + STATE(1077), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2350), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(1075), 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(37), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [28621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2915), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2913), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym_static, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [28679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 17, + ACTIONS(2917), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82086,7 +105858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2483), 33, + ACTIONS(2919), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -82120,22 +105892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23864] = 8, + [28737] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2485), 17, + ACTIONS(2921), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82153,7 +105922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2487), 26, + ACTIONS(2923), 28, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -82180,19 +105949,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23932] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [28803] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2463), 2, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2489), 17, + ACTIONS(2925), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82210,7 +105984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2491), 28, + ACTIONS(2927), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -82237,12 +106011,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [23998] = 3, + [28871] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 17, + ACTIONS(2929), 1, + anon_sym_EQ, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2931), 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(2213), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82256,13 +106049,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_EQ, sym_identifier, - ACTIONS(2495), 33, + ACTIONS(2207), 18, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -82274,109 +106063,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24056] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_enum, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(722), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(724), 1, - sym_type_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(646), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [24144] = 7, + [28936] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2187), 1, anon_sym_LBRACE, - STATE(734), 1, + STATE(961), 1, sym_field_declaration_list, - STATE(779), 1, + STATE(993), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2499), 7, + ACTIONS(2935), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82384,9 +106089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2497), 37, + ACTIONS(2933), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82409,7 +106115,6 @@ 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, @@ -82422,19 +106127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24209] = 7, + [29001] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2187), 1, anon_sym_LBRACE, - STATE(738), 1, + STATE(960), 1, sym_field_declaration_list, - STATE(743), 1, + STATE(990), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2505), 7, + ACTIONS(2939), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82442,9 +106147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2503), 37, + ACTIONS(2937), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82467,7 +106173,6 @@ 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, @@ -82480,50 +106185,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24274] = 11, + [29066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2507), 1, - sym_identifier, - ACTIONS(2522), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(754), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2519), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2517), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2510), 6, + ACTIONS(2915), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2512), 10, + anon_sym_COLON, + ACTIONS(2913), 42, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - ACTIONS(2515), 21, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82532,6 +106210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -82542,66 +106224,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24347] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2387), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(2385), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24408] = 3, + [29123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 7, + ACTIONS(2943), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82609,11 +106250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2524), 42, + ACTIONS(2941), 42, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82636,7 +106278,6 @@ 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, @@ -82652,10 +106293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24465] = 3, + [29180] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 7, + ACTIONS(2187), 1, + anon_sym_LBRACE, + STATE(955), 1, + sym_field_declaration_list, + STATE(969), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2947), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82663,11 +106313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2449), 42, + ACTIONS(2945), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82690,7 +106339,6 @@ 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, @@ -82702,23 +106350,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [24522] = 7, + [29245] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2187), 1, anon_sym_LBRACE, - STATE(741), 1, + STATE(953), 1, sym_field_declaration_list, - STATE(781), 1, + STATE(998), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2530), 7, + ACTIONS(2951), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82726,9 +106371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2528), 37, + ACTIONS(2949), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82751,7 +106397,6 @@ 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, @@ -82764,12 +106409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24587] = 7, + [29310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, - anon_sym_EQ, - STATE(630), 1, + STATE(853), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -82777,18 +106420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 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(1778), 13, + ACTIONS(2823), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82801,10 +106434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - ACTIONS(1772), 19, + anon_sym_EQ, + sym_identifier, + ACTIONS(2821), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82812,30 +106449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24652] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_EQ, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2534), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -82846,53 +106461,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 14, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_identifier, - ACTIONS(1772), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24717] = 3, + [29371] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 7, + ACTIONS(2953), 1, + sym_identifier, + ACTIONS(2968), 1, + sym_primitive_type, + STATE(975), 1, + sym_alignas_qualifier, + STATE(978), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2965), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(944), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2963), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2956), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1714), 42, + ACTIONS(2958), 10, anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2961), 21, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, @@ -82904,10 +106517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -82918,35 +106527,19 @@ 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_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24774] = 7, + [29444] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2187), 1, anon_sym_LBRACE, - STATE(739), 1, + STATE(964), 1, sym_field_declaration_list, - STATE(761), 1, + STATE(1001), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2538), 7, + ACTIONS(2972), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82954,9 +106547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2536), 37, + ACTIONS(2970), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82979,7 +106573,6 @@ 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, @@ -82992,36 +106585,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24839] = 11, + [29509] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - sym_identifier, - ACTIONS(2555), 1, - sym_primitive_type, - STATE(720), 1, + STATE(975), 1, sym_alignas_qualifier, - STATE(749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2552), 2, + ACTIONS(2981), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(713), 2, + STATE(944), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2550), 4, + ACTIONS(2976), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2978), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2974), 27, + 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, - ACTIONS(2543), 6, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + sym_primitive_type, + sym_identifier, + [29574] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + STATE(975), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2986), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2545), 10, + STATE(951), 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(2984), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2988), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -83032,10 +106693,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - ACTIONS(2548), 21, + ACTIONS(2990), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2159), 42, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83044,6 +106728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -83054,29 +106742,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24912] = 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29702] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, - anon_sym_LBRACE, - STATE(733), 1, - sym_field_declaration_list, - STATE(764), 1, - sym_attribute_specifier, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + STATE(975), 1, + sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2559), 7, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2994), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(945), 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(2992), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2988), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2990), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2557), 37, + ACTIONS(2163), 42, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83099,7 +106856,6 @@ 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, @@ -83111,15 +106867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [24977] = 11, + [29830] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - STATE(720), 1, + STATE(975), 1, sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, @@ -83127,13 +106886,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2563), 5, + ACTIONS(2998), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(725), 7, + STATE(950), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83141,7 +106900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2561), 9, + ACTIONS(2996), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83151,18 +106910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___vectorcall, anon_sym_LBRACK, sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(2988), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -83173,14 +106921,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25049] = 11, + ACTIONS(2990), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29902] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - STATE(720), 1, + STATE(975), 1, sym_alignas_qualifier, ACTIONS(35), 2, anon_sym___attribute__, @@ -83188,13 +106947,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2567), 5, + ACTIONS(3002), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(646), 7, + STATE(951), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83202,7 +106961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2565), 9, + ACTIONS(3000), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83212,7 +106971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___vectorcall, anon_sym_LBRACK, sym_identifier, - ACTIONS(47), 10, + ACTIONS(2988), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2990), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -83223,7 +106993,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + [29974] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3017), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3020), 1, + anon_sym___declspec, + STATE(975), 1, + sym_alignas_qualifier, + ACTIONS(3014), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3023), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3006), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(951), 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(3004), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(3008), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -83234,21 +107043,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25121] = 3, + ACTIONS(3011), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [30046] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 6, + STATE(992), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3028), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1738), 42, + anon_sym_COLON, + ACTIONS(3026), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83271,7 +107096,6 @@ 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, @@ -83283,40 +107107,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [25177] = 11, + [30105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, + STATE(967), 1, + sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2571), 5, + ACTIONS(3032), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(728), 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(2569), 9, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3030), 37, + anon_sym___extension__, + anon_sym_extern, + anon_sym_const, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83324,10 +107136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83337,9 +107150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -83348,36 +107158,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25249] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2575), 5, + sym_primitive_type, + sym_identifier, + [30164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(961), 46, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(646), 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(2573), 9, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -83385,10 +107186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83398,9 +107201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -83409,21 +107209,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25321] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_COLON, + sym_identifier, + [30219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 6, + STATE(995), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3036), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2577), 42, + anon_sym_COLON, + ACTIONS(3034), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83446,7 +107256,6 @@ 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, @@ -83458,25 +107267,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [25377] = 3, + [30278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1744), 6, + STATE(965), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3040), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1742), 42, + anon_sym_COLON, + ACTIONS(3038), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83499,7 +107310,6 @@ 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, @@ -83511,19 +107321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [25433] = 5, + [30337] = 5, ACTIONS(3), 1, sym_comment, - STATE(742), 1, + STATE(974), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2583), 7, + ACTIONS(3044), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83531,9 +107338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2581), 37, + ACTIONS(3042), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83556,7 +107364,6 @@ 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, @@ -83569,15 +107376,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25492] = 5, + [30396] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 1, + anon_sym_EQ, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3048), 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(2213), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + ACTIONS(2207), 17, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [30459] = 5, ACTIONS(3), 1, sym_comment, - STATE(746), 1, + STATE(989), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2587), 7, + ACTIONS(3052), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83585,9 +107448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2585), 37, + ACTIONS(3050), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83610,7 +107474,6 @@ 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, @@ -83623,15 +107486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25551] = 5, + [30518] = 5, ACTIONS(3), 1, sym_comment, - STATE(748), 1, + STATE(984), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2591), 7, + ACTIONS(3056), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83639,9 +107502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2589), 37, + ACTIONS(3054), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83664,7 +107528,6 @@ 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, @@ -83677,15 +107540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25610] = 5, + [30577] = 5, ACTIONS(3), 1, sym_comment, - STATE(760), 1, + STATE(997), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2595), 7, + ACTIONS(3060), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83693,9 +107556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2593), 37, + ACTIONS(3058), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83718,7 +107582,6 @@ 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, @@ -83731,15 +107594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25669] = 5, + [30636] = 5, ACTIONS(3), 1, sym_comment, - STATE(782), 1, + STATE(1004), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2599), 7, + ACTIONS(3064), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83747,9 +107610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2597), 37, + ACTIONS(3062), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83772,7 +107636,6 @@ 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, @@ -83785,17 +107648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25728] = 5, + [30695] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2605), 4, + ACTIONS(3070), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2603), 7, + ACTIONS(3068), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83803,11 +107666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2601), 35, + ACTIONS(3066), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83826,7 +107690,6 @@ 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, @@ -83839,15 +107702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25787] = 5, + [30754] = 5, ACTIONS(3), 1, sym_comment, - STATE(762), 1, + STATE(981), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2610), 7, + ACTIONS(3075), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83855,9 +107718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2608), 37, + ACTIONS(3073), 37, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83880,7 +107744,6 @@ 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, @@ -83893,15 +107756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25846] = 5, + [30813] = 3, ACTIONS(3), 1, sym_comment, - STATE(763), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2614), 7, + ACTIONS(3079), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83909,63 +107767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2612), 37, + ACTIONS(3077), 39, anon_sym___extension__, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25905] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(780), 1, - sym_attribute_specifier, - ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2618), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2616), 37, - anon_sym___extension__, - anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83988,7 +107795,6 @@ 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, @@ -84001,69 +107807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25964] = 5, + [30867] = 5, ACTIONS(3), 1, sym_comment, - STATE(765), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2622), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2620), 37, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + STATE(968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3085), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [26023] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(744), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2626), 7, + ACTIONS(3083), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84071,9 +107825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2624), 37, + ACTIONS(3081), 34, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84082,10 +107839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84096,7 +107849,6 @@ 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, @@ -84107,12 +107859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26082] = 3, + [30925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 7, + ACTIONS(3089), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84120,11 +107871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2628), 39, + ACTIONS(3087), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84147,7 +107899,6 @@ 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, @@ -84160,10 +107911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26136] = 3, + [30979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2634), 7, + STATE(963), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3095), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3093), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84171,11 +107929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2632), 39, + ACTIONS(3091), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84184,10 +107943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84198,7 +107953,6 @@ 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, @@ -84209,12 +107963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26190] = 3, + [31037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 7, + ACTIONS(3099), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84222,11 +107975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2636), 39, + ACTIONS(3097), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84249,7 +108003,6 @@ 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, @@ -84262,17 +108015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26244] = 5, + [31091] = 5, ACTIONS(3), 1, sym_comment, - STATE(750), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2644), 4, + ACTIONS(3095), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2642), 7, + ACTIONS(3103), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84280,57 +108033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2640), 34, + ACTIONS(3101), 34, anon_sym___extension__, 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [26302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2648), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2646), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84339,10 +108047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84353,7 +108057,6 @@ 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, @@ -84364,49 +108067,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26356] = 5, + [31149] = 11, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + ACTIONS(3105), 1, + sym_identifier, + ACTIONS(3118), 1, + sym_primitive_type, + STATE(975), 1, + sym_alignas_qualifier, + STATE(1076), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, + ACTIONS(3115), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(942), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2652), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3108), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2650), 34, + ACTIONS(3110), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -84416,22 +108106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [26414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2658), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2656), 39, - anon_sym___extension__, + ACTIONS(3113), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, @@ -84443,11 +108118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -84457,43 +108127,30 @@ 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_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [26468] = 6, + [31219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - sym_primitive_type, - STATE(736), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2605), 4, + ACTIONS(3095), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2663), 6, + ACTIONS(3122), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2660), 34, + anon_sym_COLON, + ACTIONS(3120), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84512,7 +108169,6 @@ 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, @@ -84524,17 +108180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26528] = 5, + [31277] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(994), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, + ACTIONS(3128), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2668), 7, + ACTIONS(3126), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84542,11 +108198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2666), 34, + ACTIONS(3124), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84565,7 +108222,6 @@ 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, @@ -84577,17 +108233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26586] = 5, + [31335] = 3, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2672), 7, + ACTIONS(3132), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84595,11 +108244,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2670), 34, + ACTIONS(3130), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84608,6 +108258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84618,7 +108272,6 @@ 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, @@ -84629,18 +108282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26644] = 5, + [31389] = 3, ACTIONS(3), 1, sym_comment, - STATE(770), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2678), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2676), 7, + ACTIONS(1266), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84648,11 +108295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2674), 34, + ACTIONS(1264), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84661,6 +108309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84671,7 +108323,6 @@ 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, @@ -84682,18 +108333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26702] = 5, + [31443] = 5, ACTIONS(3), 1, sym_comment, - STATE(771), 1, + STATE(1002), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2684), 4, + ACTIONS(3138), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2682), 7, + ACTIONS(3136), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84701,11 +108353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2680), 34, + ACTIONS(3134), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84724,7 +108377,6 @@ 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, @@ -84736,29 +108388,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26760] = 5, + [31501] = 6, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + ACTIONS(3140), 1, + anon_sym_LPAREN2, + STATE(970), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, + ACTIONS(2223), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2688), 7, + ACTIONS(2221), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2686), 34, + ACTIONS(2205), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84777,7 +108431,6 @@ 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, @@ -84789,17 +108442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26818] = 5, + [31561] = 5, ACTIONS(3), 1, sym_comment, - STATE(747), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2694), 4, + ACTIONS(3095), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2692), 7, + ACTIONS(3145), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84807,11 +108460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2690), 34, + ACTIONS(3143), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84830,7 +108484,6 @@ 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, @@ -84842,17 +108495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [26876] = 5, + [31619] = 3, ACTIONS(3), 1, sym_comment, - STATE(751), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2700), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2698), 7, + ACTIONS(3149), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84860,11 +108506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2696), 34, + ACTIONS(3147), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84873,6 +108520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84883,7 +108534,6 @@ 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, @@ -84894,11 +108544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26934] = 3, + [31673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 7, + STATE(963), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3095), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3153), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84906,11 +108564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2702), 39, + ACTIONS(3151), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84919,10 +108578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84933,7 +108588,6 @@ 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, @@ -84944,12 +108598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26988] = 3, + [31731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2708), 7, + ACTIONS(3157), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84957,11 +108610,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2706), 39, + ACTIONS(3155), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84984,7 +108638,6 @@ 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, @@ -84997,10 +108650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27042] = 3, + [31785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 7, + ACTIONS(3161), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85008,11 +108661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2710), 39, + ACTIONS(3159), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85035,7 +108689,6 @@ 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, @@ -85048,10 +108701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27096] = 3, + [31839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2716), 7, + ACTIONS(3165), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85059,11 +108712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2714), 39, + ACTIONS(3163), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85086,7 +108740,6 @@ 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, @@ -85099,10 +108752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27150] = 3, + [31893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2720), 7, + ACTIONS(3169), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85110,11 +108763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2718), 39, + ACTIONS(3167), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85137,7 +108791,6 @@ 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, @@ -85150,10 +108803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27204] = 3, + [31947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 7, + ACTIONS(3173), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85161,11 +108814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2722), 39, + ACTIONS(3171), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85188,7 +108842,6 @@ 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, @@ -85201,10 +108854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27258] = 3, + [32001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 7, + ACTIONS(3177), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85212,11 +108865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2726), 39, + ACTIONS(3175), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85239,7 +108893,6 @@ 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, @@ -85252,10 +108905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27312] = 3, + [32055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 7, + ACTIONS(3181), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85263,11 +108916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2730), 39, + ACTIONS(3179), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85290,7 +108944,6 @@ 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, @@ -85303,10 +108956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27366] = 3, + [32109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 7, + ACTIONS(3185), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85314,11 +108967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2734), 39, + ACTIONS(3183), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85341,7 +108995,6 @@ 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, @@ -85354,30 +109007,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27420] = 6, + [32163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LPAREN2, - STATE(768), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1788), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1786), 6, + ACTIONS(3189), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1770), 34, + ACTIONS(3187), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85386,6 +109032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85396,7 +109046,6 @@ 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, @@ -85407,11 +109056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27480] = 3, + [32217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 7, + ACTIONS(3193), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85419,11 +109069,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2741), 39, + ACTIONS(3191), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85446,7 +109097,6 @@ 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, @@ -85459,17 +109109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27534] = 5, + [32271] = 3, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2747), 7, + ACTIONS(3197), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85477,11 +109120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2745), 34, + ACTIONS(3195), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85490,6 +109134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85500,7 +109148,6 @@ 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, @@ -85511,11 +109158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27592] = 3, + [32325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 7, + ACTIONS(3201), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85523,11 +109171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2749), 39, + ACTIONS(3199), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85550,7 +109199,6 @@ 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, @@ -85563,17 +109211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27646] = 5, + [32379] = 3, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2755), 7, + ACTIONS(3205), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85581,11 +109222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2753), 34, + ACTIONS(3203), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85594,6 +109236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85604,7 +109250,6 @@ 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, @@ -85615,18 +109260,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27704] = 5, + [32433] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2654), 4, + ACTIONS(3095), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2759), 7, + ACTIONS(3209), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85634,11 +109280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2757), 34, + ACTIONS(3207), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85657,7 +109304,6 @@ 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, @@ -85669,10 +109315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [27762] = 3, + [32491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 7, + ACTIONS(3213), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85680,11 +109326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2690), 39, + ACTIONS(3211), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85707,7 +109354,6 @@ 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, @@ -85720,10 +109366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27816] = 3, + [32545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 7, + ACTIONS(3217), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85731,11 +109377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2761), 39, + ACTIONS(3215), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85758,7 +109405,6 @@ 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, @@ -85771,10 +109417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27870] = 3, + [32599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 7, + ACTIONS(3221), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85782,11 +109428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2765), 39, + ACTIONS(3219), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85809,7 +109456,6 @@ 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, @@ -85822,10 +109468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27924] = 3, + [32653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 7, + ACTIONS(3225), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85833,11 +109479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2769), 39, + ACTIONS(3223), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85860,7 +109507,6 @@ 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, @@ -85873,10 +109519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27978] = 3, + [32707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 7, + ACTIONS(2261), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85884,11 +109530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2773), 39, + ACTIONS(2259), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85911,7 +109558,6 @@ 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, @@ -85924,10 +109570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28032] = 3, + [32761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 7, + ACTIONS(3229), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85935,11 +109581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2777), 39, + ACTIONS(3227), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85962,7 +109609,6 @@ 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, @@ -85975,10 +109621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28086] = 3, + [32815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 7, + ACTIONS(3233), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85986,11 +109632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2781), 39, + ACTIONS(3231), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86013,7 +109660,6 @@ 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, @@ -86026,10 +109672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28140] = 3, + [32869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 7, + STATE(963), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3095), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3237), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86037,11 +109690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2785), 39, + ACTIONS(3235), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86050,10 +109704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86064,7 +109714,6 @@ 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, @@ -86075,12 +109724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28194] = 3, + [32927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 7, + STATE(972), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3243), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3241), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86088,11 +109743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2789), 39, + ACTIONS(3239), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86101,10 +109757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86115,7 +109767,6 @@ 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, @@ -86126,12 +109777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28248] = 3, + [32985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 7, + ACTIONS(3247), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86139,11 +109789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2793), 39, + ACTIONS(3245), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86166,7 +109817,6 @@ 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, @@ -86179,10 +109829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28302] = 3, + [33039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 7, + ACTIONS(3251), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86190,11 +109840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2797), 39, + ACTIONS(3249), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86217,7 +109868,6 @@ 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, @@ -86230,81 +109880,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28356] = 22, + [33093] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(2805), 1, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2231), 1, + anon_sym_COLON, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2229), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2813), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1369), 1, - sym__declarator, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1992), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2803), 2, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [33156] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2233), 1, + anon_sym_COLON, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2229), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 15, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2807), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(934), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [28447] = 3, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [33219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(1490), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2815), 44, + ACTIONS(1488), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86319,6 +110010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -86333,7 +110025,6 @@ 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, @@ -86349,40 +110040,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28500] = 3, + [33272] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2819), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3253), 1, + anon_sym_SEMI, + STATE(975), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2994), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(945), 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(2992), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(2988), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86392,39 +110088,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28553] = 3, + ACTIONS(2990), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [33343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2823), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + STATE(2172), 1, + sym_argument_list, + ACTIONS(961), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACE, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, + anon_sym_EQ, anon_sym_auto, anon_sym_register, anon_sym_inline, @@ -86433,7 +110135,6 @@ 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, @@ -86444,17 +110145,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - [28606] = 3, + [33398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(1494), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2827), 44, + ACTIONS(1492), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86469,6 +110170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -86483,7 +110185,6 @@ 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, @@ -86499,14 +110200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28659] = 8, + [33451] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(2225), 1, anon_sym_EQ, - ACTIONS(1798), 1, + ACTIONS(2251), 1, anon_sym_COLON, - STATE(630), 1, + STATE(853), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -86514,7 +110215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 10, + ACTIONS(2229), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86525,7 +110226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 12, + ACTIONS(2213), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86538,7 +110239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 15, + ACTIONS(2207), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86554,40 +110255,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28722] = 3, + [33514] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1322), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2831), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3255), 1, + anon_sym_SEMI, + STATE(975), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2994), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(945), 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(2992), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(2988), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86597,19 +110303,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28775] = 3, + ACTIONS(2990), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [33585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(3259), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2835), 44, + ACTIONS(3257), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86624,6 +110334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -86638,7 +110349,6 @@ 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, @@ -86654,12 +110364,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28828] = 3, + [33638] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2666), 1, + anon_sym_EQ, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2668), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [33701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(3265), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2839), 44, + ACTIONS(3263), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86674,6 +110439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -86688,7 +110454,6 @@ 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, @@ -86704,14 +110469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28881] = 8, + [33754] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(2666), 1, anon_sym_EQ, - ACTIONS(1796), 1, - anon_sym_COLON, - STATE(630), 1, + STATE(853), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -86719,7 +110482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 10, + ACTIONS(2668), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86730,7 +110493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 12, + ACTIONS(2213), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86743,8 +110506,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 15, + ACTIONS(2207), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86752,62 +110516,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28944] = 12, + [33815] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2843), 1, - anon_sym_SEMI, - STATE(720), 1, + ACTIONS(2342), 1, + anon_sym_LPAREN2, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3271), 1, + anon_sym_STAR, + ACTIONS(3281), 1, + anon_sym_LBRACK, + STATE(1334), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1435), 1, sym_alignas_qualifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, + STATE(1665), 1, + sym__declarator, + STATE(1706), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + STATE(2247), 1, + sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2571), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(728), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(3269), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3275), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3279), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1026), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1171), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2569), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, + aux_sym__type_definition_type_repeat1, + ACTIONS(3277), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3273), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -86818,12 +110592,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29015] = 3, + [33906] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2237), 1, + anon_sym_COLON, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2229), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [33969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(3285), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2845), 44, + ACTIONS(3283), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86838,6 +110667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -86852,7 +110682,6 @@ 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, @@ -86868,12 +110697,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29068] = 3, + [34022] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2241), 1, + anon_sym_COLON, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2229), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [34085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 1, + ACTIONS(1639), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2849), 44, + ACTIONS(1637), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86888,6 +110772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -86902,7 +110787,6 @@ 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, @@ -86918,14 +110802,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29121] = 8, + [34138] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2245), 1, + anon_sym_COLON, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2229), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [34201] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2235), 1, + anon_sym_COLON, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2229), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [34264] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(2225), 1, anon_sym_EQ, - ACTIONS(1792), 1, + ACTIONS(2239), 1, anon_sym_COLON, - STATE(630), 1, + STATE(853), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -86933,7 +110927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1794), 10, + ACTIONS(2229), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86944,7 +110938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 12, + ACTIONS(2213), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86957,7 +110951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 15, + ACTIONS(2207), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86973,65 +110967,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29184] = 22, + [34327] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(2342), 1, anon_sym_LPAREN2, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(2805), 1, + ACTIONS(3271), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(3281), 1, anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, + STATE(1334), 1, sym_ms_unaligned_ptr_modifier, - STATE(1368), 1, + STATE(1435), 1, + sym_alignas_qualifier, + STATE(1655), 1, sym__declarator, - STATE(1418), 1, + STATE(1712), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1742), 1, sym_parameter_list, - STATE(1992), 1, + STATE(2247), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(3279), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2853), 2, + ACTIONS(3287), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2855), 2, + ACTIONS(3289), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(783), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(936), 2, + STATE(1167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + STATE(1251), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3277), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1467), 4, + STATE(1759), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3273), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -87042,45 +111036,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29275] = 12, + [34418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(3293), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2857), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(3291), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2571), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(728), 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(2569), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87090,9 +111071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -87101,100 +111079,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29346] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_EQ, - ACTIONS(1800), 1, - anon_sym_COLON, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1794), 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(1778), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1772), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29409] = 12, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(3297), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(3295), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2571), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(728), 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(2569), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(47), 10, + [34524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3301), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3299), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87204,9 +111171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -87215,67 +111179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29480] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_EQ, - ACTIONS(2861), 1, - anon_sym_COLON, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1794), 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(1778), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1772), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29543] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, + ACTIONS(3305), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1312), 44, + ACTIONS(3303), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87290,6 +111206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87304,7 +111221,6 @@ 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, @@ -87320,12 +111236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29596] = 3, + [34630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(3309), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1356), 44, + ACTIONS(3307), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87340,6 +111256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87354,7 +111271,6 @@ 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, @@ -87370,67 +111286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29649] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_EQ, - ACTIONS(1802), 1, - anon_sym_COLON, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1794), 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(1778), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1772), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29712] = 3, + [34683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 1, + ACTIONS(3313), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1368), 44, + ACTIONS(3311), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87445,6 +111306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87459,7 +111321,6 @@ 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, @@ -87475,12 +111336,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29765] = 3, + [34736] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3105), 1, + sym_identifier, + ACTIONS(3118), 1, + sym_primitive_type, + STATE(975), 1, + sym_alignas_qualifier, + STATE(1083), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3115), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(942), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3108), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3110), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(3113), 20, + 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_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [34805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(1530), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1376), 44, + ACTIONS(1528), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87495,6 +111414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87509,7 +111429,6 @@ 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, @@ -87525,12 +111444,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29818] = 3, + [34858] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3315), 1, + anon_sym_SEMI, + STATE(975), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2994), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(945), 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(2992), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(2988), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2990), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [34929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(1631), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1272), 44, + ACTIONS(1629), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87545,6 +111523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87559,7 +111538,6 @@ 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, @@ -87575,12 +111553,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29871] = 3, + [34982] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1322), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3317), 1, + anon_sym_SEMI, + STATE(975), 1, + sym_alignas_qualifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2994), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(945), 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(2992), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(2988), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2990), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [35053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 1, + ACTIONS(3321), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1320), 44, + ACTIONS(3319), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87595,6 +111632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87609,7 +111647,6 @@ 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, @@ -87625,12 +111662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29924] = 3, + [35106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(3325), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2863), 44, + ACTIONS(3323), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87645,6 +111682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87659,7 +111697,6 @@ 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, @@ -87675,12 +111712,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29977] = 3, + [35159] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2227), 1, + anon_sym_COLON, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2229), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [35222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(1568), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2867), 44, + ACTIONS(1566), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87695,6 +111787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87709,7 +111802,6 @@ 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, @@ -87725,12 +111817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30030] = 3, + [35275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, + ACTIONS(3329), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2871), 44, + ACTIONS(3327), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87745,6 +111837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87759,7 +111852,6 @@ 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, @@ -87775,88 +111867,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30083] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2875), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2571), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(728), 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(2569), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [30154] = 10, + [35328] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2243), 1, + anon_sym_COLON, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2229), 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(2213), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -87864,11 +111906,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_EQ, - ACTIONS(2471), 23, + ACTIONS(2207), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87876,122 +111916,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30220] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2888), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2881), 3, - anon_sym___attribute__, - anon_sym___attribute, - sym_identifier, - ACTIONS(2884), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2891), 4, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(2886), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [30278] = 14, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [35391] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + ACTIONS(3337), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3339), 1, + anon_sym_AMP_AMP, + ACTIONS(3341), 1, + anon_sym_PIPE, + ACTIONS(3343), 1, + anon_sym_CARET, + ACTIONS(3345), 1, + anon_sym_AMP, + ACTIONS(3357), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(3347), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3355), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(3331), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88002,50 +111988,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30352] = 13, + [35477] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2895), 2, + ACTIONS(3347), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, + ACTIONS(2881), 5, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym___attribute, anon_sym_EQ, - ACTIONS(2471), 21, + ACTIONS(2883), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -88061,62 +112048,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30424] = 20, + [35551] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2229), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [35611] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(3337), 1, anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, + ACTIONS(3339), 1, anon_sym_AMP_AMP, - ACTIONS(2907), 1, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(2909), 1, + ACTIONS(3343), 1, anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(3345), 1, anon_sym_AMP, - ACTIONS(2915), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(3347), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2913), 2, + ACTIONS(3361), 2, anon_sym___attribute, anon_sym_EQ, - ACTIONS(2879), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2901), 16, + ACTIONS(3359), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88127,115 +112166,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30510] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2924), 1, - anon_sym_LBRACE, - ACTIONS(2926), 1, - anon_sym_COLON, - STATE(774), 1, - sym_attribute_specifier, - STATE(879), 1, - sym_enumerator_list, - ACTIONS(2921), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2919), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2917), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [30572] = 19, + [35695] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(2907), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(2909), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(3379), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3389), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(3365), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(3381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(3383), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(3385), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2930), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2879), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2928), 17, + ACTIONS(3363), 16, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - 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, @@ -88246,53 +112231,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30656] = 11, + sym_identifier, + [35781] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + ACTIONS(3371), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3373), 1, + anon_sym_AMP_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_CARET, + ACTIONS(3379), 1, + anon_sym_AMP, + ACTIONS(3389), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(3355), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2899), 2, + ACTIONS(3381), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3383), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3385), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(3331), 16, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, + 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, @@ -88303,51 +112297,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30724] = 9, + sym_identifier, + [35867] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + ACTIONS(3371), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3373), 1, + anon_sym_AMP_AMP, + ACTIONS(3375), 1, + anon_sym_PIPE, + ACTIONS(3377), 1, + anon_sym_CARET, + ACTIONS(3379), 1, + anon_sym_AMP, + ACTIONS(3389), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2879), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2469), 11, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3381), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3383), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3385), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(3393), 2, + aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(3369), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3391), 16, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, + 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, @@ -88358,113 +112363,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30788] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2932), 3, - anon_sym___attribute__, - anon_sym___attribute, sym_identifier, - ACTIONS(2935), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2942), 4, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(2937), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [30846] = 20, + [35953] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2952), 1, + ACTIONS(3371), 1, anon_sym_PIPE_PIPE, - ACTIONS(2954), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(2956), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(3379), 1, anon_sym_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2946), 2, + ACTIONS(3361), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(3383), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(3385), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2944), 16, + ACTIONS(3359), 17, 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, @@ -88476,26 +112429,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30932] = 9, + [36037] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3402), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3395), 3, + anon_sym___attribute__, + anon_sym___attribute, + sym_identifier, + ACTIONS(3398), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(3405), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3400), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [36095] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2950), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 11, + ACTIONS(2881), 11, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -88507,7 +112512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(2883), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -88531,52 +112536,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30996] = 18, + [36159] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2954), 1, + ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(2956), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(3379), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2881), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(3383), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(3385), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 18, + ACTIONS(2883), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -88595,50 +112600,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31078] = 17, + [36241] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2956), 1, + ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(3379), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2881), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(3383), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(3385), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(2883), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -88658,56 +112663,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31158] = 15, + [36321] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(3377), 1, + anon_sym_CARET, + ACTIONS(3379), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(3381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(3383), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(3385), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2881), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2883), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88719,48 +112724,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31234] = 15, + sym_identifier, + [36399] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2960), 1, + ACTIONS(3379), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(3383), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(3385), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, + ACTIONS(2881), 4, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2883), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -88780,47 +112786,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31310] = 14, + [36475] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(3383), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(3385), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, + ACTIONS(2881), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2883), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -88840,44 +112846,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31384] = 13, + [36549] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2964), 2, + ACTIONS(3383), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(3385), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, + ACTIONS(2881), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2471), 21, + ACTIONS(2883), 21, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -88899,32 +112905,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31456] = 11, + [36621] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2968), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 7, + ACTIONS(2881), 7, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, @@ -88932,7 +112938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(2883), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -88956,29 +112962,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31524] = 10, + [36689] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(3367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2950), 3, + ACTIONS(3369), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 9, + ACTIONS(2881), 9, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, @@ -88988,7 +112994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(2883), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -89012,61 +113018,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31590] = 20, + [36755] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2954), 1, - anon_sym_AMP_AMP, - ACTIONS(2956), 1, + ACTIONS(3407), 1, + anon_sym_EQ, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3409), 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(2213), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2958), 1, anon_sym_CARET, - ACTIONS(2960), 1, anon_sym_AMP, - ACTIONS(2970), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2207), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(676), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [36815] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2913), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(3335), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2881), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2883), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [36881] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2901), 16, + ACTIONS(2881), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2883), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89077,62 +113182,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31676] = 20, + [36945] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2952), 1, + ACTIONS(3337), 1, anon_sym_PIPE_PIPE, - ACTIONS(2954), 1, + ACTIONS(3339), 1, anon_sym_AMP_AMP, - ACTIONS(2956), 1, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(3343), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(3345), 1, anon_sym_AMP, - ACTIONS(2970), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3347), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2974), 2, - aux_sym_preproc_elif_token1, + ACTIONS(3393), 2, + anon_sym___attribute, anon_sym_EQ, - ACTIONS(2950), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2972), 16, + ACTIONS(3391), 16, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89143,60 +113248,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31762] = 19, + [37031] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2954), 1, + ACTIONS(3339), 1, anon_sym_AMP_AMP, - ACTIONS(2956), 1, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(2958), 1, + ACTIONS(3343), 1, anon_sym_CARET, - ACTIONS(2960), 1, + ACTIONS(3345), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2881), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2930), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2948), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(3347), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2950), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2928), 17, + ACTIONS(2883), 18, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89208,55 +113312,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [37113] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2249), 1, + anon_sym_LBRACE, + ACTIONS(3418), 1, + anon_sym_COLON, + STATE(986), 1, + sym_attribute_specifier, + STATE(1097), 1, + sym_enumerator_list, + ACTIONS(3415), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3413), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3411), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym_const, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [31846] = 17, + [37175] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2907), 1, - anon_sym_PIPE, - ACTIONS(2909), 1, - anon_sym_CARET, - ACTIONS(2911), 1, - anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2877), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2897), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(2881), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2883), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -89272,55 +113423,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31926] = 18, + [37243] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(3427), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3420), 3, + anon_sym___attribute__, + anon_sym___attribute, + sym_identifier, + ACTIONS(3423), 4, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2459), 1, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(3430), 4, anon_sym_LBRACK, - ACTIONS(2905), 1, - anon_sym_AMP_AMP, - ACTIONS(2907), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3425), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [37301] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(2909), 1, + ACTIONS(3343), 1, anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(3345), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2881), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2877), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(3347), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 18, + ACTIONS(2883), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -89336,56 +113538,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32008] = 20, + [37381] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(3337), 1, anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, + ACTIONS(3339), 1, anon_sym_AMP_AMP, - ACTIONS(2907), 1, + ACTIONS(3341), 1, anon_sym_PIPE, - ACTIONS(2909), 1, + ACTIONS(3343), 1, anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(3345), 1, anon_sym_AMP, - ACTIONS(2915), 1, + ACTIONS(3357), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(3347), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2974), 2, + ACTIONS(3365), 2, anon_sym___attribute, anon_sym_EQ, - ACTIONS(2879), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2972), 16, + ACTIONS(3363), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -89402,49 +113604,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32094] = 16, + [37467] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2909), 1, + ACTIONS(3343), 1, anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(3345), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(3347), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, + ACTIONS(2881), 3, anon_sym_PIPE, anon_sym___attribute, anon_sym_EQ, - ACTIONS(2879), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(2883), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -89464,115 +113666,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32172] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_EQ, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2978), 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(1778), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1772), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [32232] = 20, + [37545] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_AMP_AMP, - ACTIONS(2907), 1, - anon_sym_PIPE, - ACTIONS(2909), 1, - anon_sym_CARET, - ACTIONS(2911), 1, + ACTIONS(3345), 1, anon_sym_AMP, - ACTIONS(2915), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2877), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2893), 2, + ACTIONS(3347), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2895), 2, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2897), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2899), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2879), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2944), 16, + ACTIONS(2881), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2883), 19, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89583,56 +113727,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32318] = 16, + [37621] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2958), 1, - anon_sym_CARET, - ACTIONS(2960), 1, - anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2948), 2, + ACTIONS(3333), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2964), 2, + ACTIONS(3349), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2966), 2, + ACTIONS(3351), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2968), 2, + ACTIONS(3353), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2950), 3, + ACTIONS(3335), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(2881), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2883), 21, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89644,79 +113786,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [37693] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3017), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3020), 1, + anon_sym___declspec, + STATE(502), 1, + sym_alignas_qualifier, + ACTIONS(3014), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3023), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1075), 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(3004), 9, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + ACTIONS(3432), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(3435), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [37758] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + sym_primitive_type, + STATE(1079), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3441), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3444), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3438), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___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_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [32396] = 5, + [37815] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, - anon_sym_EQ, - ACTIONS(1794), 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(1778), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - ACTIONS(1772), 19, + ACTIONS(3105), 1, + sym_identifier, + ACTIONS(3118), 1, + sym_primitive_type, + STATE(975), 1, + sym_alignas_qualifier, + STATE(1128), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3115), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(942), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3447), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3108), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_STAR, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3110), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(3113), 15, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [32451] = 7, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [37882] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(2249), 1, anon_sym_LBRACE, - STATE(776), 1, + STATE(991), 1, sym_attribute_specifier, - STATE(876), 1, + STATE(1103), 1, sym_enumerator_list, - ACTIONS(2984), 2, + ACTIONS(3453), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2982), 6, + ACTIONS(3451), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2980), 32, + ACTIONS(3449), 32, anon_sym___extension__, anon_sym_extern, + anon_sym_const, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -89735,7 +113989,55 @@ static const uint16_t ts_small_parse_table[] = { 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_alignas, + anon_sym__Alignas, + sym_identifier, + [37941] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1079), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3068), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3444), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3066), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_const, + anon_sym___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_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -89746,13 +114048,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [32510] = 5, + [37996] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2268), 1, + anon_sym_EQ, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2270), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 14, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [38055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2929), 1, anon_sym_EQ, - ACTIONS(2534), 10, + ACTIONS(2931), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89763,7 +114118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1778), 13, + ACTIONS(2213), 13, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -89777,7 +114132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1772), 19, + ACTIONS(2207), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -89797,17 +114152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [32565] = 3, + [38110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 2, + ACTIONS(2720), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2274), 40, + ACTIONS(2718), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym___cdecl, anon_sym___clrcall, @@ -89828,7 +114184,6 @@ 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, @@ -89844,63 +114199,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32615] = 21, + [38160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(3066), 1, + sym_primitive_type, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3441), 3, anon_sym_LPAREN2, - ACTIONS(1825), 1, anon_sym_STAR, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(2813), 1, - anon_sym_LBRACK, - ACTIONS(2853), 1, - anon_sym_RPAREN, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1302), 1, - sym__declarator, - STATE(1418), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1967), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(848), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(957), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + anon_sym_LBRACK_LBRACK, + ACTIONS(3456), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3438), 33, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_const, + anon_sym___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_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -89909,61 +114246,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [32701] = 21, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [38216] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(2342), 1, anon_sym_LPAREN2, - ACTIONS(1825), 1, + ACTIONS(2344), 1, anon_sym_STAR, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(2803), 1, - anon_sym_RPAREN, - ACTIONS(2813), 1, + ACTIONS(3281), 1, anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, + ACTIONS(3287), 1, + anon_sym_RPAREN, + STATE(1334), 1, sym_ms_unaligned_ptr_modifier, - STATE(1299), 1, + STATE(1435), 1, + sym_alignas_qualifier, + STATE(1591), 1, sym__declarator, - STATE(1430), 1, + STATE(1712), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1742), 1, sym_parameter_list, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(3279), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(953), 2, + STATE(1199), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + STATE(1251), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3277), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1467), 4, + STATE(1759), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3273), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -89974,28 +114314,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [32787] = 3, + [38302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 2, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3068), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2258), 40, + ACTIONS(3456), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3066), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___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_static, anon_sym_auto, anon_sym_register, @@ -90005,7 +114351,6 @@ 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, @@ -90017,88 +114362,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32837] = 5, + [38356] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 1, - anon_sym_LBRACK_LBRACK, - STATE(503), 1, - sym_string_literal, - ACTIONS(2987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2577), 34, - anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, + ACTIONS(2342), 1, + anon_sym_LPAREN2, + ACTIONS(2344), 1, + anon_sym_STAR, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3269), 1, + anon_sym_RPAREN, + ACTIONS(3281), 1, + anon_sym_LBRACK, + STATE(1334), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1435), 1, + sym_alignas_qualifier, + STATE(1590), 1, + sym__declarator, + STATE(1706), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + STATE(2061), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1376), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(3279), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1084), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1198), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3277), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3273), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -90108,30 +114428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32939] = 3, + [38442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(2748), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1272), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2746), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, 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, @@ -90145,7 +114460,6 @@ 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, @@ -90161,63 +114475,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32988] = 5, + [38492] = 5, ACTIONS(3), 1, sym_comment, - STATE(777), 1, - sym_attribute_specifier, - ACTIONS(2993), 2, - anon_sym___attribute__, + ACTIONS(3046), 1, + anon_sym_EQ, + ACTIONS(3048), 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(2213), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(2991), 6, + ACTIONS(2207), 17, 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_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2989), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [33041] = 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [38545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(3301), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2867), 40, + anon_sym_RBRACE, + ACTIONS(3299), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -90225,6 +114539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90239,7 +114554,6 @@ 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, @@ -90255,12 +114569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33090] = 3, + [38594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, + ACTIONS(1639), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2871), 40, + ACTIONS(1637), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90271,6 +114585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90285,7 +114600,6 @@ 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, @@ -90301,12 +114615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33139] = 3, + [38643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(3285), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2815), 40, + ACTIONS(3283), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90317,6 +114631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90331,7 +114646,6 @@ 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, @@ -90347,12 +114661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33188] = 3, + [38692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 1, + ACTIONS(3301), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1320), 40, + ACTIONS(3299), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90363,6 +114677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90377,7 +114692,6 @@ 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, @@ -90393,13 +114707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33237] = 3, + [38741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 2, + ACTIONS(3321), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2863), 39, + ACTIONS(3319), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90409,6 +114723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90423,7 +114738,6 @@ 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, @@ -90439,12 +114753,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33286] = 3, + [38790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, + ACTIONS(1490), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1312), 40, + ACTIONS(1488), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90455,6 +114769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90469,7 +114784,6 @@ 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, @@ -90485,13 +114799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33335] = 3, + [38839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 2, + ACTIONS(3285), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2823), 39, + ACTIONS(3283), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90501,6 +114815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90515,7 +114830,6 @@ 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, @@ -90531,15 +114845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33384] = 3, + [38888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 1, + ACTIONS(1568), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2849), 40, + anon_sym_RBRACE, + ACTIONS(1566), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -90547,6 +114861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90561,7 +114876,6 @@ 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, @@ -90577,13 +114891,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33433] = 3, + [38937] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 2, + STATE(1005), 1, + sym_attribute_specifier, + ACTIONS(3463), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3461), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3459), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym_const, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [38990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3309), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2845), 39, + ACTIONS(3307), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90593,6 +114955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90607,7 +114970,6 @@ 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, @@ -90623,13 +114985,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33482] = 3, + [39039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 2, + ACTIONS(1530), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1312), 39, + ACTIONS(1528), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90639,6 +115001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90653,7 +115016,6 @@ 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, @@ -90669,13 +115031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33531] = 3, + [39088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 2, + ACTIONS(1631), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2827), 39, + ACTIONS(1629), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90685,6 +115047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90699,7 +115062,52 @@ static const uint16_t ts_small_parse_table[] = { 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_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [39137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3329), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3327), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -90715,13 +115123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33580] = 3, + [39186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 2, + ACTIONS(3305), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1356), 39, + ACTIONS(3303), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90731,6 +115139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90745,7 +115154,6 @@ 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, @@ -90761,13 +115169,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33629] = 3, + [39235] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(983), 1, + sym_attribute_specifier, + ACTIONS(3470), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3468), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3466), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym_const, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [39288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(3325), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1368), 39, + ACTIONS(3323), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90777,6 +115233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90791,7 +115248,6 @@ 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, @@ -90807,13 +115263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33678] = 3, + [39337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(3297), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2849), 39, + ACTIONS(3295), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90823,6 +115279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90837,7 +115294,6 @@ 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, @@ -90853,24 +115309,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33727] = 5, + [39386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(3313), 2, anon_sym_LBRACK_LBRACK, - STATE(506), 1, - sym_string_literal, - ACTIONS(2987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2577), 34, + anon_sym_RBRACE, + ACTIONS(3311), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90885,7 +115340,6 @@ 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, @@ -90901,24 +115355,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33780] = 5, + [39435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 1, + STATE(987), 1, + sym_attribute_specifier, + ACTIONS(3477), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3475), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(497), 1, - sym_string_literal, - ACTIONS(2987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2577), 34, + ACTIONS(3473), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym_const, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [39488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3265), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3263), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90933,7 +115434,6 @@ 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, @@ -90949,12 +115449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33833] = 3, + [39537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(1494), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2863), 40, + ACTIONS(1492), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90965,6 +115465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90979,7 +115480,52 @@ static const uint16_t ts_small_parse_table[] = { 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_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [39586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3307), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -90995,13 +115541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33882] = 3, + [39635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, + ACTIONS(1639), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1272), 39, + ACTIONS(1637), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91011,6 +115557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91025,7 +115572,6 @@ 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, @@ -91041,12 +115587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33931] = 3, + [39684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + ACTIONS(3313), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2819), 40, + ACTIONS(3311), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91057,6 +115603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91071,7 +115618,6 @@ 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, @@ -91087,15 +115633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33980] = 3, + [39733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(1490), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2823), 40, + anon_sym_RBRACE, + ACTIONS(1488), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91103,6 +115649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91117,7 +115664,6 @@ 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, @@ -91133,13 +115679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34029] = 3, + [39782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 2, + ACTIONS(1494), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1320), 39, + ACTIONS(1492), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91149,6 +115695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91163,7 +115710,6 @@ 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, @@ -91179,13 +115725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34078] = 3, + [39831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 2, + ACTIONS(3293), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2819), 39, + ACTIONS(3291), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91195,6 +115741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91209,7 +115756,6 @@ 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, @@ -91225,33 +115771,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34127] = 5, + [39880] = 3, ACTIONS(3), 1, sym_comment, - STATE(769), 1, - sym_attribute_specifier, - ACTIONS(3000), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2998), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3259), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2996), 32, + ACTIONS(3257), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, anon_sym___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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91261,7 +115802,6 @@ 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, @@ -91272,16 +115812,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [34180] = 3, + [39929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, + ACTIONS(3265), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2867), 39, + ACTIONS(3263), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91289,6 +115833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91303,7 +115848,6 @@ 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, @@ -91319,24 +115863,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34229] = 5, + [39978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(3297), 1, anon_sym_LBRACK_LBRACK, - STATE(499), 1, - sym_string_literal, - ACTIONS(2987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2577), 34, + ACTIONS(3295), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91351,7 +115894,6 @@ 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, @@ -91367,33 +115909,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34282] = 5, + [40027] = 3, ACTIONS(3), 1, sym_comment, - STATE(758), 1, - sym_attribute_specifier, - ACTIONS(3007), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(3005), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3305), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3003), 32, + ACTIONS(3303), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, anon_sym___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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91403,7 +115940,6 @@ 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, @@ -91414,13 +115950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [34335] = 3, + [40076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(1568), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2827), 40, + ACTIONS(1566), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91431,6 +115971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91445,7 +115986,6 @@ 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, @@ -91461,12 +116001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34384] = 3, + [40125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 1, + ACTIONS(3325), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2831), 40, + ACTIONS(3323), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91477,6 +116017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91491,7 +116032,6 @@ 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, @@ -91507,13 +116047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34433] = 3, + [40174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 2, + ACTIONS(3329), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2871), 39, + ACTIONS(3327), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91523,6 +116063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91537,7 +116078,6 @@ 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, @@ -91553,12 +116093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34482] = 3, + [40223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(1530), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2835), 40, + ACTIONS(1528), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91569,6 +116109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91583,7 +116124,6 @@ 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, @@ -91599,12 +116139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34531] = 3, + [40272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(3321), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2839), 40, + ACTIONS(3319), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91615,6 +116155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91629,7 +116170,6 @@ 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, @@ -91645,12 +116185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34580] = 3, + [40321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(1631), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2845), 40, + ACTIONS(1629), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91661,6 +116201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91675,7 +116216,6 @@ 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, @@ -91691,12 +116231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34629] = 3, + [40370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(3293), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1356), 40, + ACTIONS(3291), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91707,6 +116247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91721,7 +116262,6 @@ 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, @@ -91737,13 +116277,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34678] = 3, + [40419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 2, + ACTIONS(3259), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2831), 39, + ACTIONS(3257), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91753,6 +116293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91767,7 +116308,6 @@ 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, @@ -91783,27 +116323,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34727] = 3, + [40468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 2, + ACTIONS(3066), 1, + sym_primitive_type, + STATE(963), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3070), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3441), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2815), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(3438), 28, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91813,7 +116360,6 @@ 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, @@ -91824,32 +116370,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34776] = 3, + [40522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 1, + STATE(980), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2263), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2261), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1368), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2259), 28, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91859,7 +116407,6 @@ 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, @@ -91870,32 +116417,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34825] = 3, + [40574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 2, + ACTIONS(2169), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2835), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2167), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91905,7 +116452,6 @@ 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, @@ -91916,42 +116462,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34874] = 3, + [40622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(2666), 1, + anon_sym_EQ, + ACTIONS(2668), 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(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACE, - ACTIONS(2839), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [40673] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(961), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3480), 24, + anon_sym___extension__, + anon_sym_const, + 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -91963,31 +116553,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34923] = 3, + [40722] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_PIPE, + ACTIONS(3494), 1, + anon_sym_CARET, + ACTIONS(3496), 1, + anon_sym_AMP, + ACTIONS(3506), 1, + anon_sym_DOT, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3500), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3488), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2883), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40801] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3492), 1, + anon_sym_PIPE, + ACTIONS(3494), 1, + anon_sym_CARET, + ACTIONS(3496), 1, + anon_sym_AMP, + ACTIONS(3506), 1, + anon_sym_DOT, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3500), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3488), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2883), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40878] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3494), 1, + anon_sym_CARET, + ACTIONS(3496), 1, + anon_sym_AMP, + ACTIONS(3506), 1, + anon_sym_DOT, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3500), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3488), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2883), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40953] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3496), 1, + anon_sym_AMP, + ACTIONS(3506), 1, + anon_sym_DOT, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3500), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2881), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(3488), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2883), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41026] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(3140), 1, + anon_sym_LPAREN2, + ACTIONS(3508), 1, + anon_sym_COMMA, + ACTIONS(3511), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1928), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(2221), 2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1376), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2223), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2205), 28, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91997,7 +116827,6 @@ 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, @@ -92008,98 +116837,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34972] = 18, + [41085] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3393), 1, + anon_sym_EQ, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_PIPE, + ACTIONS(3494), 1, + anon_sym_CARET, + ACTIONS(3496), 1, + anon_sym_AMP, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3514), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3516), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3500), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3488), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3391), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41168] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, + STATE(1132), 1, sym_ms_unaligned_ptr_modifier, - STATE(1335), 1, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1627), 1, sym__type_declarator, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, + ACTIONS(3528), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(908), 2, + STATE(1154), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1016), 2, + STATE(1239), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, + ACTIONS(3526), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [35049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3022), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3020), 36, + ACTIONS(3524), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92109,30 +116959,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [35096] = 9, + [41245] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2469), 13, + ACTIONS(2921), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92146,7 +116986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2923), 21, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92166,23 +117006,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35155] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [41302] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2453), 13, + ACTIONS(2925), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92196,7 +117038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2455), 19, + ACTIONS(2927), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92216,35 +117058,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35214] = 9, + [41361] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(2181), 1, + sym_identifier, + ACTIONS(2185), 1, + anon_sym___declspec, + ACTIONS(2187), 1, + anon_sym_LBRACE, + STATE(952), 1, + sym_field_declaration_list, + STATE(1810), 1, + sym_attribute_specifier, + STATE(1907), 1, + sym_ms_declspec_modifier, + ACTIONS(2183), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(961), 31, anon_sym_LPAREN2, - ACTIONS(3028), 1, - anon_sym_COMMA, - ACTIONS(3031), 1, - anon_sym_RPAREN, - STATE(768), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1666), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1786), 2, anon_sym_STAR, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_const, anon_sym_LBRACK_LBRACK, - ACTIONS(1788), 4, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1770), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92254,7 +117098,6 @@ 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, @@ -92265,59 +117108,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - [35273] = 21, + [41420] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(2946), 1, - anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE, - ACTIONS(3044), 1, - anon_sym_CARET, - ACTIONS(3046), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3498), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3500), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3504), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3488), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2944), 12, + ACTIONS(2881), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2883), 15, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -92328,45 +117164,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35356] = 10, + [41491] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2469), 10, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3500), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3504), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3488), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2881), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2883), 17, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92379,54 +117219,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35417] = 19, + [41560] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE, - ACTIONS(3044), 1, - anon_sym_CARET, - ACTIONS(3046), 1, - anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3052), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3504), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3488), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 14, + ACTIONS(2881), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2883), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92439,53 +117272,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35496] = 18, + [41625] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3520), 1, + anon_sym_LPAREN2, + ACTIONS(3522), 1, + anon_sym_STAR, + ACTIONS(3532), 1, + sym_primitive_type, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1637), 1, + sym__type_declarator, + STATE(2224), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1152), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1244), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1721), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(3524), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [41702] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - ACTIONS(3042), 1, - anon_sym_PIPE, - ACTIONS(3044), 1, - anon_sym_CARET, - ACTIONS(3046), 1, - anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(2897), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3050), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3054), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 15, + anon_sym_EQ, + ACTIONS(2899), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92498,52 +117381,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35573] = 17, + [41761] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3536), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(961), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3534), 24, + anon_sym___extension__, + anon_sym_const, + 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [41810] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3361), 1, + anon_sym_EQ, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3044), 1, + ACTIONS(3490), 1, + anon_sym_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_PIPE, + ACTIONS(3494), 1, anon_sym_CARET, - ACTIONS(3046), 1, + ACTIONS(3496), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3514), 1, + anon_sym_PIPE_PIPE, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(3034), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3498), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3500), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3504), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3488), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 15, + ACTIONS(3359), 13, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92556,51 +117487,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35648] = 16, + [41891] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - ACTIONS(3046), 1, - anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(2901), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3050), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3054), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(3036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 15, + ACTIONS(2903), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92613,52 +117537,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35721] = 15, + [41950] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3365), 1, + anon_sym_EQ, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3490), 1, + anon_sym_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_PIPE, + ACTIONS(3494), 1, + anon_sym_CARET, + ACTIONS(3496), 1, + anon_sym_AMP, + ACTIONS(3506), 1, anon_sym_DOT, - STATE(676), 1, + ACTIONS(3514), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3516), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3498), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3500), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3504), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3488), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2471), 15, + ACTIONS(3363), 12, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -92669,49 +117599,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35792] = 14, + [42033] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3520), 1, + anon_sym_LPAREN2, + ACTIONS(3522), 1, + anon_sym_STAR, + ACTIONS(3532), 1, + sym_primitive_type, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1627), 1, + sym__type_declarator, + STATE(2224), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1239), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1721), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(3524), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [42110] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3052), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3054), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3488), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, + ACTIONS(2881), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2471), 17, + ACTIONS(2883), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92724,40 +117710,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35861] = 12, + [42173] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3520), 1, + anon_sym_LPAREN2, + ACTIONS(3522), 1, + anon_sym_STAR, + ACTIONS(3532), 1, + sym_primitive_type, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1649), 1, + sym__type_declarator, + STATE(2224), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1721), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(3524), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [42250] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(2881), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3054), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3036), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2883), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92777,30 +117819,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35926] = 11, + [42309] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(2909), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3036), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -92809,7 +117849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2911), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92829,117 +117869,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35989] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN2, - ACTIONS(3014), 1, - anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1345), 1, - sym__type_declarator, - STATE(1810), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1013), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [36066] = 21, + [42368] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(2913), 1, - anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, + ACTIONS(3506), 1, anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE, - ACTIONS(3044), 1, - anon_sym_CARET, - ACTIONS(3046), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3488), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2881), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3050), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3054), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2901), 12, + anon_sym_EQ, + ACTIONS(2883), 19, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -92950,56 +117920,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36149] = 21, + [42429] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2891), 1, anon_sym_DASH_GT, - ACTIONS(2974), 1, + ACTIONS(3355), 1, anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3040), 1, + ACTIONS(3490), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3492), 1, anon_sym_PIPE, - ACTIONS(3044), 1, + ACTIONS(3494), 1, anon_sym_CARET, - ACTIONS(3046), 1, + ACTIONS(3496), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3514), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3516), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, + ACTIONS(3498), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3050), 2, + ACTIONS(3500), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, + ACTIONS(3502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3054), 2, + ACTIONS(3504), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, + ACTIONS(3488), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2972), 12, + ACTIONS(3331), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -93012,55 +117982,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36232] = 20, + [42512] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(3541), 1, + anon_sym_LPAREN2, + ACTIONS(3545), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(2930), 1, - anon_sym_EQ, - ACTIONS(3024), 1, + STATE(970), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2221), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(3538), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(2223), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2205), 27, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [42568] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, + anon_sym___declspec, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2203), 1, + sym_identifier, + STATE(956), 1, + sym_field_declaration_list, + STATE(1916), 1, + sym_ms_declspec_modifier, + ACTIONS(961), 33, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + [42622] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 1, + anon_sym_EQ, + ACTIONS(3409), 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(2213), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(3044), 1, anon_sym_CARET, - ACTIONS(3046), 1, anon_sym_AMP, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2207), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3034), 2, + anon_sym_DASH_GT, + [42672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3048), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3050), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3052), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3054), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2928), 13, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2919), 24, anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93073,20 +118162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36313] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [42718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, - anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - STATE(676), 1, - sym_argument_list, - ACTIONS(2489), 13, + ACTIONS(2905), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93100,14 +118182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2491), 21, + anon_sym_DOT, + ACTIONS(2907), 24, anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93122,23 +118207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [36370] = 9, + anon_sym_DASH_GT, + [42764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, - anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2485), 13, + ACTIONS(2893), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93152,14 +118225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2487), 19, + anon_sym_DOT, + ACTIONS(2895), 24, anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93172,23 +118248,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36429] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, - anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2473), 13, + anon_sym_DASH_GT, + [42810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2229), 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(2213), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93201,17 +118280,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2475), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2207), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [42860] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3140), 1, + anon_sym_LPAREN2, + STATE(970), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(3548), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2223), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2205), 28, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [42914] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 1, + anon_sym_LPAREN2, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3271), 1, + anon_sym_STAR, + ACTIONS(3281), 1, + anon_sym_LBRACK, + STATE(1435), 1, + sym_alignas_qualifier, + STATE(1656), 1, + sym__declarator, + STATE(1696), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + STATE(2247), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3551), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3553), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1413), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3273), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [42989] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2268), 1, + anon_sym_EQ, + ACTIONS(2270), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -93222,23 +118416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36488] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, - anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2477), 13, + ACTIONS(2213), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93251,17 +118429,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2479), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2207), 14, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [43038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(2177), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(961), 32, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + [43085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2268), 1, + anon_sym_EQ, + ACTIONS(2356), 1, + anon_sym_SEMI, + ACTIONS(2270), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -93272,57 +118505,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36547] = 18, + ACTIONS(2213), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2207), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [43136] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2342), 1, + anon_sym_LPAREN2, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3271), 1, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(720), 1, + ACTIONS(3281), 1, + anon_sym_LBRACK, + STATE(1435), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1357), 1, - sym__type_declarator, - STATE(1810), 1, + STATE(1655), 1, + sym__declarator, + STATE(1712), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + STATE(2247), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1017), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3016), 4, + ACTIONS(3287), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3289), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1413), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3273), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [43211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2249), 1, + anon_sym_LBRACE, + STATE(1107), 1, + sym_enumerator_list, + ACTIONS(961), 34, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + 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_alignas, + anon_sym__Alignas, + [43260] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2179), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(961), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + 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_alignas, + anon_sym__Alignas, + sym_identifier, + [43307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1396), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -93331,57 +118710,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [36624] = 18, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [43351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN2, - ACTIONS(3014), 1, - anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1345), 1, - sym__type_declarator, - STATE(1810), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(3557), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3555), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(916), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1013), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3016), 4, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [43395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1450), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1448), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [43439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1466), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1464), 34, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -93390,248 +118833,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [36701] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [43483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1354), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1352), 34, anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1156), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [36747] = 3, + [43527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1174), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1362), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1360), 34, anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1176), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [36793] = 3, + [43571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1362), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1360), 34, anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1200), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [36839] = 3, + [43615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3559), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3425), 34, anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1204), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [36885] = 3, + [43659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1454), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1452), 34, anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1204), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [36931] = 8, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [43703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 1, - anon_sym_LPAREN2, - ACTIONS(3065), 1, - anon_sym_LBRACK, - STATE(768), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1786), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3058), 2, - anon_sym_RPAREN, + ACTIONS(1454), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1788), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1770), 27, + anon_sym_LBRACE, + ACTIONS(1452), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_const, anon_sym___declspec, - anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93641,7 +119071,6 @@ 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, @@ -93652,432 +119081,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [36987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1214), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1216), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [37033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2481), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2483), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1156), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [37125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2493), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2495), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37171] = 3, + [43747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1398), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1396), 34, anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1172), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [37217] = 3, + [43791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3563), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3561), 34, anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1172), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [37263] = 3, + [43835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1174), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1466), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1464), 34, anon_sym___extension__, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1176), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [37309] = 3, + [43879] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2467), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(2422), 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_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_EQ, - ACTIONS(2978), 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(1778), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2424), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1772), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(2988), 1, + anon_sym_const, + ACTIONS(3277), 1, + sym_ms_restrict_modifier, + ACTIONS(3281), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37405] = 7, + STATE(975), 1, + sym_alignas_qualifier, + STATE(1334), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1712), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + ACTIONS(3567), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3569), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3571), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1251), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1392), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3287), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3565), 9, + 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, + [43952] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(2422), 1, anon_sym_LPAREN2, - STATE(768), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1786), 2, + ACTIONS(2424), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3068), 2, + ACTIONS(2988), 1, + anon_sym_const, + ACTIONS(3277), 1, + sym_ms_restrict_modifier, + ACTIONS(3281), 1, + anon_sym_LBRACK, + STATE(975), 1, + sym_alignas_qualifier, + STATE(1334), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1706), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + ACTIONS(3567), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3569), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3571), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1187), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1393), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3269), 3, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1788), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1770), 28, + anon_sym_COLON, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3565), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -94086,56 +119319,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [37459] = 18, + [44025] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(2805), 1, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3575), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1370), 1, + STATE(1656), 1, sym__declarator, - STATE(1429), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1992), 1, + STATE(2247), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3071), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3073), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(672), 2, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1395), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94146,98 +119371,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [37534] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_EQ, - ACTIONS(3075), 1, - anon_sym_SEMI, - ACTIONS(1794), 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(1778), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1772), 13, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [37585] = 18, + [44093] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(2805), 1, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1369), 1, + STATE(1592), 1, sym__declarator, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1992), 1, + STATE(2061), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2803), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2807), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(672), 2, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1397), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94248,32 +119423,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [37660] = 3, + [44161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 2, + ACTIONS(1266), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(961), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1170), 34, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(1264), 19, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + anon_sym_const, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -94285,35 +119462,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37704] = 3, + [44205] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1174), 34, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1590), 1, + sym__declarator, + STATE(2061), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1195), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1396), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3524), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94323,38 +119515,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, + [44273] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3579), 1, + sym_identifier, + ACTIONS(3581), 1, + anon_sym_LPAREN2, + ACTIONS(3583), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1617), 1, + sym__field_declarator, + STATE(2198), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(3524), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [44341] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3579), 1, sym_identifier, - [37748] = 3, + ACTIONS(3581), 1, + anon_sym_LPAREN2, + ACTIONS(3583), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1617), 1, + sym__field_declarator, + STATE(2198), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1197), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1402), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(3524), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [44409] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1174), 34, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1591), 1, + sym__declarator, + STATE(2061), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1400), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3524), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94364,38 +119671,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, + [44477] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1591), 1, + sym__declarator, + STATE(2061), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1190), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1400), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3524), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [44545] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3579), 1, sym_identifier, - [37792] = 3, + ACTIONS(3581), 1, + anon_sym_LPAREN2, + ACTIONS(3583), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1618), 1, + sym__field_declarator, + STATE(2198), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1398), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(3524), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [44613] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3077), 34, + ACTIONS(2342), 1, + anon_sym_LPAREN2, + ACTIONS(2344), 1, + anon_sym_STAR, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3281), 1, + anon_sym_LBRACK, + ACTIONS(3287), 1, + anon_sym_RPAREN, + STATE(1435), 1, + sym_alignas_qualifier, + STATE(1591), 1, + sym__declarator, + STATE(1712), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + STATE(2061), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1413), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3273), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94405,38 +119828,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, + [44683] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 1, + anon_sym_LPAREN2, + ACTIONS(2344), 1, + anon_sym_STAR, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3281), 1, + anon_sym_LBRACK, + ACTIONS(3551), 1, + anon_sym_RPAREN, + STATE(1435), 1, + sym_alignas_qualifier, + STATE(1592), 1, + sym__declarator, + STATE(1696), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + STATE(2061), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1198), 34, + STATE(1413), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3273), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94446,38 +119881,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37880] = 3, + [44753] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1202), 34, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3579), 1, + sym_identifier, + ACTIONS(3581), 1, + anon_sym_LPAREN2, + ACTIONS(3583), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1615), 1, + sym__field_declarator, + STATE(2198), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1193), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1399), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(3524), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94487,38 +119933,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37924] = 3, + [44821] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1202), 34, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3575), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1655), 1, + sym__declarator, + STATE(2247), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1403), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3524), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94528,38 +119985,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37968] = 3, + [44889] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1214), 34, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3575), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1655), 1, + sym__declarator, + STATE(2247), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1189), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1403), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3524), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94569,38 +120037,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38012] = 3, + [44957] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3081), 34, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3575), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1665), 1, + sym__declarator, + STATE(2247), 1, + sym_ms_based_modifier, + ACTIONS(51), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3528), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1201), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1401), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3526), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3524), 10, anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94610,268 +120089,773 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + [45025] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3587), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3613), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3585), 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, + [45102] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3593), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2881), 7, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2883), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + sym_identifier, + [45157] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 8, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + sym_identifier, + [45230] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 9, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + sym_identifier, + [45301] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3593), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2881), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2883), 12, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + sym_identifier, + [45364] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3593), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2881), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2883), 14, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + sym_identifier, + [45423] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3593), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2881), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2883), 10, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, sym_identifier, - [38056] = 3, + [45488] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2886), 34, - anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3365), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3613), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3363), 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, - [38100] = 3, + [45565] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1154), 34, - anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3355), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3613), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3331), 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, - [38144] = 3, + [45642] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1170), 34, - anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3393), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3613), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3391), 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, - [38188] = 3, + [45719] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1154), 34, - anon_sym___extension__, - 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_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3359), 7, + 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, sym_identifier, - [38232] = 7, + [45794] = 16, ACTIONS(3), 1, sym_comment, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3094), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3091), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3089), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2885), 1, anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2887), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3087), 21, - 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, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3603), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 10, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, sym_identifier, - [38283] = 18, + [45861] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3593), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, anon_sym_STAR, - ACTIONS(2809), 1, - sym_ms_restrict_modifier, - ACTIONS(2813), 1, + anon_sym_PERCENT, + ACTIONS(2881), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2883), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + sym_identifier, + [45918] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(720), 1, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 9, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + sym_identifier, + [45987] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 1, + sym_identifier, + ACTIONS(1804), 1, + sym_primitive_type, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - ACTIONS(3099), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3101), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3103), 2, + STATE(1406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1409), 1, + sym_type_specifier, + STATE(1570), 1, + sym__type_definition_type, + ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1091), 2, + STATE(1249), 2, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2803), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3097), 9, + aux_sym__type_definition_type_repeat1, + ACTIONS(1802), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -94880,53 +120864,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38356] = 18, + [46051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(3615), 13, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + ACTIONS(3617), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1950), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2809), 1, - sym_ms_restrict_modifier, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 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_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [46091] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 1, + sym_identifier, + ACTIONS(1804), 1, + sym_primitive_type, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1418), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - ACTIONS(3099), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3101), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3103), 2, + STATE(1406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1409), 1, + sym_type_specifier, + STATE(1571), 1, + sym__type_definition_type, + ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(951), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1085), 2, + STATE(1249), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2853), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(1802), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -94935,49 +120950,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38429] = 17, + [46155] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1825), 1, - anon_sym_STAR, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2420), 1, sym_identifier, - ACTIONS(2813), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3619), 1, + anon_sym_enum, + STATE(502), 1, sym_alignas_qualifier, - STATE(1301), 1, - sym__declarator, - STATE(1429), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1967), 1, - sym_ms_based_modifier, + STATE(1308), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1369), 1, + sym_type_specifier, + STATE(2229), 1, + sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1245), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(2119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94988,48 +120999,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38499] = 16, + [46219] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(1800), 1, sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - STATE(720), 1, + ACTIONS(1804), 1, + sym_primitive_type, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1299), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, + STATE(1406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1409), 1, + sym_type_specifier, + STATE(1561), 1, + sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(955), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1117), 2, + STATE(1249), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(1802), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95040,48 +121048,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38567] = 16, + [46283] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2420), 1, sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1301), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, + STATE(1308), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1369), 1, + sym_type_specifier, + STATE(2188), 1, + sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1114), 2, + STATE(1238), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(2119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95092,48 +121097,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38635] = 16, + [46347] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2420), 1, sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1302), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, + STATE(1308), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1369), 1, + sym_type_specifier, + STATE(2083), 1, + sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(966), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1113), 2, + STATE(1238), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(2119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95144,49 +121146,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38703] = 17, + [46411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(3621), 13, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + ACTIONS(3623), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1825), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 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_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [46451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3625), 13, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - ACTIONS(2803), 1, + ACTIONS(3627), 19, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, + anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [46491] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2420), 1, + sym_identifier, + ACTIONS(3619), 1, + anon_sym_enum, + STATE(502), 1, sym_alignas_qualifier, - STATE(1299), 1, - sym__declarator, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1967), 1, - sym_ms_based_modifier, + STATE(1308), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1369), 1, + sym_type_specifier, + STATE(2264), 1, + sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1245), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(2119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95197,48 +121269,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38773] = 16, + [46555] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2420), 1, sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_STAR, - STATE(720), 1, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1370), 1, - sym__declarator, - STATE(1992), 1, - sym_ms_based_modifier, + STATE(1308), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1369), 1, + sym_type_specifier, + STATE(2081), 1, + sym_type_descriptor, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1115), 2, + STATE(1238), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(2119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95249,48 +121318,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38841] = 16, + [46619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3629), 13, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3631), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3115), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(720), 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_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [46659] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 1, + sym_identifier, + ACTIONS(1804), 1, + sym_primitive_type, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1330), 1, - sym__field_declarator, - STATE(1953), 1, - sym_ms_based_modifier, + STATE(1406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1409), 1, + sym_type_specifier, + STATE(1567), 1, + sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(961), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1118), 2, + STATE(1249), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 10, + ACTIONS(1802), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95301,48 +121404,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38909] = 16, + [46723] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(1800), 1, sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_STAR, - STATE(720), 1, + ACTIONS(1804), 1, + sym_primitive_type, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1369), 1, - sym__declarator, - STATE(1992), 1, - sym_ms_based_modifier, + STATE(1406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1409), 1, + sym_type_specifier, + STATE(1572), 1, + sym__type_definition_type, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1112), 2, + STATE(1249), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(1802), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95353,48 +121453,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38977] = 16, + [46787] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3522), 1, anon_sym_STAR, - STATE(720), 1, + ACTIONS(3532), 1, + sym_primitive_type, + STATE(1191), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1327), 1, - sym__field_declarator, - STATE(1953), 1, + STATE(1622), 1, + sym__type_declarator, + STATE(2224), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1110), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 10, + ACTIONS(3530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1721), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95405,48 +121500,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39045] = 16, + [46848] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3111), 1, - sym_identifier, - ACTIONS(3113), 1, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2881), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(2883), 14, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_QMARK, + [46901] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym___attribute, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 6, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_QMARK, + [46972] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym___attribute, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 7, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_QMARK, + [47041] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 7, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_QMARK, + [47108] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3645), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, anon_sym_STAR, - STATE(720), 1, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 8, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_QMARK, + [47173] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2420), 1, + sym_identifier, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1327), 1, - sym__field_declarator, - STATE(1953), 1, - sym_ms_based_modifier, + STATE(1308), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1373), 1, + sym_type_specifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(965), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1110), 2, + STATE(1408), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 10, + ACTIONS(2119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95457,48 +121792,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39113] = 16, + [47234] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3522), 1, anon_sym_STAR, - STATE(720), 1, + ACTIONS(3532), 1, + sym_primitive_type, + STATE(1191), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1369), 1, - sym__declarator, - STATE(1992), 1, + STATE(1649), 1, + sym__type_declarator, + STATE(2224), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(958), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1112), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1721), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95509,48 +121839,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39181] = 16, + [47295] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3365), 1, + anon_sym___attribute, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3363), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [47370] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3355), 1, + anon_sym___attribute, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3331), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [47445] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3393), 1, + anon_sym___attribute, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3391), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [47520] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym___attribute, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3359), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_QMARK, + [47593] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3522), 1, anon_sym_STAR, - STATE(720), 1, + ACTIONS(3532), 1, + sym_primitive_type, + STATE(1191), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1368), 1, - sym__declarator, - STATE(1992), 1, + STATE(1627), 1, + sym__type_declarator, + STATE(2224), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(960), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1111), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1721), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95561,48 +122101,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39249] = 16, + [47654] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + ACTIONS(2121), 1, + sym_primitive_type, + ACTIONS(2420), 1, sym_identifier, - ACTIONS(3113), 1, - anon_sym_LPAREN2, - ACTIONS(3115), 1, - anon_sym_STAR, - STATE(720), 1, + ACTIONS(3619), 1, + anon_sym_enum, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1326), 1, - sym__field_declarator, - STATE(1953), 1, - sym_ms_based_modifier, + STATE(1308), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1373), 1, + sym_type_specifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1109), 2, + STATE(1408), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 10, + ACTIONS(2119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95613,48 +122148,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39317] = 16, + [47715] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2881), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(2883), 14, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_QMARK, + [47770] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2881), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(2883), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_QMARK, + [47827] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, anon_sym_STAR, - STATE(720), 1, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2881), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(2883), 10, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_QMARK, + [47888] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 1, + sym_identifier, + ACTIONS(1804), 1, + sym_primitive_type, + ACTIONS(1806), 1, + anon_sym_enum, + ACTIONS(1808), 1, + anon_sym_struct, + ACTIONS(1810), 1, + anon_sym_union, + STATE(502), 1, sym_alignas_qualifier, - STATE(998), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1299), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, + STATE(1406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1411), 1, + sym_type_specifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2811), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1117), 2, + STATE(1408), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2809), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(1802), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(999), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95665,256 +122331,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39385] = 14, + [47949] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, + ACTIONS(2881), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym___attribute, - ACTIONS(2471), 12, + ACTIONS(2883), 8, 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___attribute__, - anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [39448] = 21, + [48012] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + STATE(1334), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3666), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1251), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3663), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3661), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2459), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3131), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, + anon_sym_COLON, + ACTIONS(3659), 16, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym___based, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [48058] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3139), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3141), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3143), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3145), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3147), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3671), 1, + anon_sym___attribute, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3129), 6, + ACTIONS(3669), 3, 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, - [39525] = 20, + anon_sym_SEMI, + anon_sym___attribute__, + [48132] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2249), 1, + anon_sym_LBRACE, + ACTIONS(3673), 1, + anon_sym_COLON, + STATE(986), 1, + sym_attribute_specifier, + STATE(1332), 1, + sym_enumerator_list, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3413), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2459), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2930), 1, + ACTIONS(3411), 19, + anon_sym___extension__, + anon_sym_const, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [48180] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2249), 1, + anon_sym_LBRACE, + STATE(991), 1, + sym_attribute_specifier, + STATE(1342), 1, + sym_enumerator_list, + ACTIONS(35), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3451), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3449), 19, + anon_sym___extension__, + anon_sym_const, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [48226] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_COMMA, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3701), 1, + anon_sym_RBRACE, + ACTIONS(3703), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + STATE(1954), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2928), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [39600] = 21, + [48301] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2946), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3139), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3141), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3143), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3145), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3147), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3705), 1, + anon_sym_COMMA, + ACTIONS(3707), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + STATE(1878), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2944), 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, - [39677] = 10, + [48376] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2469), 7, - aux_sym_preproc_elif_token1, + ACTIONS(2881), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2471), 16, + ACTIONS(2883), 13, 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_CARET, @@ -95924,607 +122695,517 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACE, anon_sym_QMARK, - sym_identifier, - [39732] = 19, + [48427] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3141), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3143), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3145), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3147), 1, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 8, + ACTIONS(2883), 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_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_RBRACE, anon_sym_QMARK, - sym_identifier, - [39805] = 18, + [48494] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3143), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3145), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3147), 1, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 9, + ACTIONS(2883), 6, 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_RBRACE, anon_sym_QMARK, - sym_identifier, - [39876] = 17, + [48559] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3145), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3147), 1, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 9, + ACTIONS(2883), 6, 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_RBRACE, anon_sym_QMARK, - sym_identifier, - [39945] = 16, + [48624] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3147), 1, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3685), 1, + anon_sym_AMP_AMP, + ACTIONS(3687), 1, + anon_sym_PIPE, + ACTIONS(3689), 1, + anon_sym_CARET, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3703), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 10, + ACTIONS(3391), 3, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - sym_identifier, - [40012] = 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + [48695] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3691), 1, + anon_sym_AMP, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2471), 10, + ACTIONS(2883), 7, 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_CARET, + anon_sym_RBRACE, anon_sym_QMARK, - sym_identifier, - [40077] = 14, + [48758] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2881), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2471), 12, + ACTIONS(2883), 7, 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_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RBRACE, anon_sym_QMARK, - sym_identifier, - [40140] = 12, + [48819] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2881), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3155), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2469), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2471), 14, + ACTIONS(3697), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 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_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_RBRACE, anon_sym_QMARK, - sym_identifier, - [40199] = 11, + [48878] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2469), 5, - aux_sym_preproc_elif_token1, + ACTIONS(3699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2881), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2471), 16, + ACTIONS(2883), 11, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - sym_identifier, - [40256] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2913), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, - anon_sym_SLASH, - ACTIONS(3139), 1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(3141), 1, anon_sym_AMP_AMP, - ACTIONS(3143), 1, - anon_sym_PIPE, - ACTIONS(3145), 1, anon_sym_CARET, - ACTIONS(3147), 1, - anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_QMARK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3133), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3135), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3153), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2901), 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, - [40333] = 21, + anon_sym_RBRACE, + anon_sym_QMARK, + [48933] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2974), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3139), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3141), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3143), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3145), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3147), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2972), 6, + ACTIONS(3359), 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, - [40410] = 21, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK, + [49002] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2974), 1, - anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3705), 1, + anon_sym_COMMA, + ACTIONS(3709), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + STATE(1901), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2972), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [40487] = 10, + [49077] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3119), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2469), 7, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3679), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2881), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym___attribute, - ACTIONS(2471), 16, + ACTIONS(2883), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -96536,814 +123217,637 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [40542] = 19, + [49130] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3161), 1, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3703), 1, + anon_sym_QMARK, + ACTIONS(3711), 1, + anon_sym_COMMA, + ACTIONS(3713), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + STATE(1918), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2471), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [40615] = 18, + [49205] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1132), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3661), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3718), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3715), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3659), 19, + anon_sym___extension__, + anon_sym_const, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [49250] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3163), 1, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3685), 1, + anon_sym_AMP_AMP, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3703), 1, + anon_sym_QMARK, + ACTIONS(3721), 1, + anon_sym_COMMA, + ACTIONS(3723), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + STATE(1877), 1, + aux_sym__attribute_argument_list_repeat1, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2471), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [40686] = 17, + [49325] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3165), 1, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3685), 1, + anon_sym_AMP_AMP, + ACTIONS(3687), 1, + anon_sym_PIPE, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3703), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2471), 9, + ACTIONS(3363), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [40755] = 20, + [49396] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2930), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3137), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3139), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3141), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3143), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3145), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3147), 1, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3703), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3133), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3135), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3149), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3151), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3153), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3155), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2928), 7, + ACTIONS(3331), 3, 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, - sym_identifier, - [40830] = 16, + anon_sym_RPAREN, + anon_sym_RBRACE, + [49467] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3167), 1, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3733), 1, + anon_sym_AMP_AMP, + ACTIONS(3735), 1, + anon_sym_PIPE, + ACTIONS(3737), 1, + anon_sym_CARET, + ACTIONS(3739), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3749), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(3117), 2, + ACTIONS(3363), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2471), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [40897] = 15, + [49537] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3733), 1, + anon_sym_AMP_AMP, + ACTIONS(3735), 1, + anon_sym_PIPE, + ACTIONS(3737), 1, + anon_sym_CARET, + ACTIONS(3739), 1, + anon_sym_AMP, + ACTIONS(3749), 1, + anon_sym_QMARK, + ACTIONS(3751), 1, + anon_sym_COMMA, + ACTIONS(3753), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2469), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym___attribute, - ACTIONS(2471), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [40962] = 21, + [49609] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2946), 1, - anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2944), 6, + ACTIONS(3755), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_COLON, - [41039] = 12, + [49679] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3685), 1, + anon_sym_AMP_AMP, + ACTIONS(3687), 1, + anon_sym_PIPE, + ACTIONS(3689), 1, + anon_sym_CARET, + ACTIONS(3691), 1, + anon_sym_AMP, + ACTIONS(3703), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3127), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2469), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute, - ACTIONS(2471), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3695), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(3699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3757), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [41098] = 11, + [49749] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3733), 1, + anon_sym_AMP_AMP, + ACTIONS(3735), 1, + anon_sym_PIPE, + ACTIONS(3737), 1, + anon_sym_CARET, + ACTIONS(3739), 1, + anon_sym_AMP, + ACTIONS(3749), 1, + anon_sym_QMARK, + ACTIONS(3751), 1, + anon_sym_COMMA, + ACTIONS(3759), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2469), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute, - ACTIONS(2471), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3741), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3743), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [41155] = 21, + [49821] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2913), 1, - anon_sym___attribute, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2901), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [41232] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, - sym_type_specifier, - STATE(1280), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1018), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [41296] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, - sym_type_specifier, - STATE(1271), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1018), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [41360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3179), 26, - 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_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [41400] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1063), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, - sym_type_specifier, - STATE(1845), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1015), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [41464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3183), 26, - 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_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [41504] = 3, + ACTIONS(3679), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3697), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3761), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49891] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 13, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3681), 1, anon_sym_SLASH, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3685), 1, + anon_sym_AMP_AMP, + ACTIONS(3687), 1, anon_sym_PIPE, + ACTIONS(3689), 1, + anon_sym_CARET, + ACTIONS(3691), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - ACTIONS(3189), 19, + ACTIONS(3703), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, anon_sym_COMMA, + ACTIONS(3765), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3695), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [41544] = 3, + [49963] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 13, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2881), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - ACTIONS(3193), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(2883), 12, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -97353,561 +123857,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [41584] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, - sym_type_specifier, - STATE(1277), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1018), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [41648] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(3195), 1, - anon_sym_enum, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1063), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, - sym_type_specifier, - STATE(1850), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1014), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [41712] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1063), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, - sym_type_specifier, - STATE(1811), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1015), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [41776] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + [50015] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 13, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, anon_sym_SLASH, + ACTIONS(3773), 1, + anon_sym_AMP_AMP, + ACTIONS(3775), 1, anon_sym_PIPE, + ACTIONS(3777), 1, + anon_sym_CARET, + ACTIONS(3779), 1, anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [50083] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - ACTIONS(3199), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3777), 1, + anon_sym_CARET, + ACTIONS(3779), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [41816] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(3195), 1, - anon_sym_enum, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1063), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, - sym_type_specifier, - STATE(2020), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1014), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [41880] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, - sym_type_specifier, - STATE(1279), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1018), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [41944] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1063), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1084), 1, - sym_type_specifier, - STATE(1828), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1015), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42008] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, - sym_type_specifier, - STATE(1274), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1018), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42072] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, - sym_type_specifier, - STATE(1278), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1018), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42136] = 15, + ACTIONS(2883), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [50149] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, - sym_type_specifier, - STATE(1282), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1018), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42200] = 15, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3777), 1, + anon_sym_CARET, + ACTIONS(3779), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [50215] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1124), 1, - sym_type_specifier, - STATE(1276), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1018), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42264] = 3, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3779), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [50279] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 13, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [50341] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - ACTIONS(3203), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3771), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [50401] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2881), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2883), 10, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -97915,1241 +124183,1371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [42304] = 14, + anon_sym_RBRACK, + anon_sym_QMARK, + [50457] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1357), 1, - sym__type_declarator, - STATE(1810), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42365] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(3195), 1, - anon_sym_enum, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1063), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1101), 1, - sym_type_specifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42426] = 14, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2881), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2883), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [50511] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(1946), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1063), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1101), 1, - sym_type_specifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42487] = 14, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, + anon_sym_QMARK, + ACTIONS(3789), 1, + anon_sym_COMMA, + ACTIONS(3791), 1, + anon_sym_COLON, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50583] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3681), 1, + anon_sym_SLASH, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3685), 1, + anon_sym_AMP_AMP, + ACTIONS(3687), 1, + anon_sym_PIPE, + ACTIONS(3689), 1, + anon_sym_CARET, + ACTIONS(3691), 1, + anon_sym_AMP, + ACTIONS(3703), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3585), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3679), 2, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1345), 1, - sym__type_declarator, - STATE(1810), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42548] = 14, + anon_sym_PERCENT, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3697), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50653] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3773), 1, + anon_sym_AMP_AMP, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3777), 1, + anon_sym_CARET, + ACTIONS(3779), 1, + anon_sym_AMP, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3767), 2, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1337), 1, - sym__type_declarator, - STATE(1810), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42609] = 14, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50725] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1126), 1, - sym_type_specifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(772), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42670] = 21, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3773), 1, + anon_sym_AMP_AMP, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3777), 1, + anon_sym_CARET, + ACTIONS(3779), 1, + anon_sym_AMP, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3331), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50797] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3773), 1, + anon_sym_AMP_AMP, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3777), 1, + anon_sym_CARET, + ACTIONS(3779), 1, + anon_sym_AMP, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3391), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50869] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3763), 1, anon_sym_COMMA, - STATE(676), 1, + ACTIONS(3797), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3207), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [42744] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2924), 1, - anon_sym_LBRACE, - ACTIONS(3209), 1, - anon_sym_COLON, - STATE(774), 1, - sym_attribute_specifier, - STATE(1044), 1, - sym_enumerator_list, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2919), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2917), 19, - 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_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [42792] = 21, + [50941] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3213), 1, - anon_sym___attribute, - STATE(676), 1, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3799), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3211), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [42866] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2924), 1, - anon_sym_LBRACE, - STATE(776), 1, - sym_attribute_specifier, - STATE(1062), 1, - sym_enumerator_list, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2982), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2980), 19, - 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_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [42912] = 22, + [51013] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3215), 1, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3217), 1, + ACTIONS(3801), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - STATE(1587), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [42987] = 22, + [51085] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3219), 1, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3221), 1, + ACTIONS(3803), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - STATE(1572), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43062] = 22, + [51157] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3223), 1, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3225), 1, - anon_sym_RBRACE, - STATE(676), 1, + ACTIONS(3805), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - STATE(1670), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43137] = 22, + [51229] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3749), 1, anon_sym_QMARK, - ACTIONS(3219), 1, + ACTIONS(3751), 1, anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3807), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - STATE(1617), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43212] = 20, + [51301] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3749), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3751), 1, + anon_sym_COMMA, + ACTIONS(3809), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3229), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43282] = 22, + [51373] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_RBRACK, - ACTIONS(3259), 1, + ACTIONS(3749), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3751), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3741), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43356] = 21, + [51445] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2944), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43428] = 11, + ACTIONS(3813), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51515] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, + anon_sym_QMARK, + ACTIONS(3789), 1, + anon_sym_COMMA, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3235), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2469), 6, + ACTIONS(3637), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2471), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3647), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [43480] = 19, + [51587] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3241), 1, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3691), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3703), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [43548] = 18, + ACTIONS(3817), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51657] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3243), 1, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3733), 1, + anon_sym_AMP_AMP, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3739), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3749), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3331), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3741), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [43614] = 18, + [51727] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3245), 1, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3733), 1, + anon_sym_AMP_AMP, + ACTIONS(3735), 1, + anon_sym_PIPE, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3739), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3749), 1, + anon_sym_QMARK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3391), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3741), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [43680] = 17, + [51797] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(3118), 1, + sym_primitive_type, + ACTIONS(3819), 1, + sym_identifier, + STATE(975), 1, + sym_alignas_qualifier, + STATE(1404), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3115), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1326), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3821), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3108), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE, - ACTIONS(3024), 1, + anon_sym_COLON, + ACTIONS(3110), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [51847] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3247), 1, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3733), 1, + anon_sym_AMP_AMP, + ACTIONS(3735), 1, + anon_sym_PIPE, + ACTIONS(3737), 1, + anon_sym_CARET, + ACTIONS(3739), 1, anon_sym_AMP, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3741), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, + ACTIONS(3359), 3, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_QMARK, - [43744] = 16, + [51915] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3733), 1, + anon_sym_AMP_AMP, + ACTIONS(3735), 1, + anon_sym_PIPE, + ACTIONS(3737), 1, + anon_sym_CARET, + ACTIONS(3739), 1, + anon_sym_AMP, + ACTIONS(3749), 1, + anon_sym_QMARK, + ACTIONS(3751), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3741), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [43806] = 15, + [51987] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3733), 1, + anon_sym_AMP_AMP, + ACTIONS(3735), 1, + anon_sym_PIPE, + ACTIONS(3737), 1, + anon_sym_CARET, + ACTIONS(3739), 1, + anon_sym_AMP, + ACTIONS(3749), 1, + anon_sym_QMARK, + ACTIONS(3751), 1, + anon_sym_COMMA, + ACTIONS(3825), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3251), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [43866] = 13, + [52059] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3681), 1, anon_sym_SLASH, - STATE(676), 1, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3685), 1, + anon_sym_AMP_AMP, + ACTIONS(3687), 1, + anon_sym_PIPE, + ACTIONS(3689), 1, + anon_sym_CARET, + ACTIONS(3691), 1, + anon_sym_AMP, + ACTIONS(3703), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3827), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3255), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3697), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 4, + [52131] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, + anon_sym_QMARK, + ACTIONS(3789), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_COLON, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2471), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52203] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, + anon_sym_QMARK, + ACTIONS(3789), 1, + anon_sym_COMMA, + ACTIONS(3827), 1, + anon_sym_COLON, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [43922] = 12, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + STATE(987), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3475), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + anon_sym_COLON, + ACTIONS(3473), 19, + anon_sym___extension__, + anon_sym_const, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [52315] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, anon_sym_SLASH, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2469), 4, + ACTIONS(2881), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2471), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(2883), 12, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -99159,1182 +125557,1194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_QMARK, - [43976] = 21, + [52365] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3749), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3751), 1, anon_sym_COMMA, - ACTIONS(3261), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3831), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44048] = 21, + [52437] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3259), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3741), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44120] = 21, + ACTIONS(2883), 4, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_QMARK, + [52503] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3263), 1, - anon_sym_COLON, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44192] = 21, + ACTIONS(2883), 5, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_QMARK, + [52567] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3789), 1, + anon_sym_COMMA, + ACTIONS(3833), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2972), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44264] = 20, + [52639] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3265), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [44334] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(758), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(3005), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3003), 19, - 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_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [44374] = 20, + ACTIONS(3359), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_QMARK, + [52709] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3267), 2, + ACTIONS(2883), 5, anon_sym_COMMA, - anon_sym_RBRACE, - [44444] = 20, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_QMARK, + [52773] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3789), 1, + anon_sym_COMMA, + ACTIONS(3835), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3269), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [44514] = 20, + [52845] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3271), 2, + ACTIONS(2883), 6, anon_sym_COMMA, - anon_sym_RPAREN, - [44584] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_QMARK, + [52907] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3273), 1, - anon_sym_RPAREN, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44656] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3121), 1, - anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(2883), 6, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, + anon_sym_SEMI, anon_sym_QMARK, - ACTIONS(3205), 1, + [52967] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 1, + sym_primitive_type, + ACTIONS(3837), 1, + sym_identifier, + STATE(975), 1, + sym_alignas_qualifier, + STATE(978), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2965), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(944), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2963), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2956), 6, anon_sym_COMMA, - ACTIONS(3275), 1, - anon_sym_SEMI, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44728] = 21, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2958), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [53017] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3789), 1, anon_sym_COMMA, - ACTIONS(3277), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3839), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44800] = 21, + [53089] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3279), 1, - anon_sym_SEMI, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, + ACTIONS(2883), 8, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [44872] = 21, + anon_sym_SEMI, + anon_sym_QMARK, + [53147] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3281), 1, - anon_sym_SEMI, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, + ACTIONS(2881), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2883), 10, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [44944] = 21, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + [53201] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3749), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3283), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45016] = 21, + ACTIONS(3841), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [53271] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3285), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(2881), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(2883), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45088] = 21, + anon_sym_SEMI, + anon_sym_QMARK, + [53323] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1005), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3461), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3459), 19, + anon_sym___extension__, + anon_sym_const, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [53363] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3749), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3751), 1, anon_sym_COMMA, - ACTIONS(3287), 1, + ACTIONS(3843), 1, anon_sym_SEMI, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45160] = 21, + [53435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(961), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3482), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(3480), 22, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [53473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(961), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3536), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(3534), 22, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [53511] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3289), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3845), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45232] = 20, + [53583] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3291), 2, + ACTIONS(3847), 2, anon_sym_COMMA, anon_sym_RPAREN, - [45302] = 21, + [53653] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3789), 1, anon_sym_COMMA, - ACTIONS(3293), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3849), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45374] = 21, + [53725] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3789), 1, anon_sym_COMMA, - ACTIONS(3295), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3851), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45446] = 20, + [53797] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_DASH_GT, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3026), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3739), 1, anon_sym_AMP, - STATE(676), 1, + ACTIONS(3749), 1, + anon_sym_QMARK, + ACTIONS(3751), 1, + anon_sym_COMMA, + ACTIONS(3827), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3233), 2, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3741), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2928), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_QMARK, - [45516] = 21, + [53869] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3789), 1, anon_sym_COMMA, - ACTIONS(3297), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3853), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45588] = 5, + [53941] = 5, ACTIONS(3), 1, sym_comment, - STATE(769), 1, + STATE(983), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2998), 6, + ACTIONS(3468), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2996), 19, + ACTIONS(3466), 19, anon_sym___extension__, + anon_sym_const, 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, @@ -100347,323 +126757,439 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [45628] = 10, + [53981] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2555), 1, - sym_primitive_type, - ACTIONS(3299), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1121), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2552), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1076), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3301), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2543), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(2891), 1, + anon_sym_DASH_GT, + ACTIONS(3484), 1, anon_sym_LPAREN2, + ACTIONS(3506), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3773), 1, + anon_sym_AMP_AMP, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3777), 1, + anon_sym_CARET, + ACTIONS(3779), 1, + anon_sym_AMP, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, + anon_sym_QMARK, + ACTIONS(3855), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3857), 1, + anon_sym_RBRACK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3767), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2545), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [45678] = 21, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54055] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3749), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3751), 1, anon_sym_COMMA, - ACTIONS(3303), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3859), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45750] = 21, + [54127] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3861), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45822] = 21, + [54199] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3749), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3751), 1, anon_sym_COMMA, - ACTIONS(3307), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3863), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45894] = 20, + [54271] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3729), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3733), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3735), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3737), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3739), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3749), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3751), 1, + anon_sym_COMMA, + ACTIONS(3865), 1, + anon_sym_SEMI, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3727), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3741), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3745), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3747), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3129), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45964] = 21, + [54343] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3873), 1, + anon_sym_AMP, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3869), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3875), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3877), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3879), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2883), 5, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_QMARK, + [54404] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2646), 1, + anon_sym_RBRACK, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3773), 1, + anon_sym_AMP_AMP, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3309), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, + [54473] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2644), 1, + anon_sym_RBRACK, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3773), 1, + anon_sym_AMP_AMP, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3777), 1, + anon_sym_CARET, + ACTIONS(3779), 1, + anon_sym_AMP, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [46036] = 5, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54542] = 13, ACTIONS(3), 1, sym_comment, - STATE(777), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2991), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2422), 1, anon_sym_LPAREN2, + ACTIONS(2424), 1, anon_sym_STAR, + ACTIONS(2988), 1, + anon_sym_const, + ACTIONS(3281), 1, anon_sym_LBRACK, + STATE(975), 1, + sym_alignas_qualifier, + STATE(1742), 1, + sym_parameter_list, + STATE(1768), 1, + sym__abstract_declarator, + ACTIONS(3571), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(944), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3883), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2989), 19, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3565), 9, 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, @@ -100672,778 +127198,773 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [46076] = 21, + [54597] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2662), 1, + anon_sym_RBRACK, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3311), 1, - anon_sym_COLON, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46148] = 21, + [54666] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3313), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3885), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, + [54735] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2658), 1, + anon_sym_RBRACK, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3769), 1, + anon_sym_SLASH, + ACTIONS(3773), 1, + anon_sym_AMP_AMP, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3777), 1, + anon_sym_CARET, + ACTIONS(3779), 1, + anon_sym_AMP, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3767), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [46220] = 21, + ACTIONS(3783), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3785), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54804] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3873), 1, + anon_sym_AMP, + ACTIONS(3887), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3889), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3891), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3893), 1, anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3315), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3359), 2, + anon_sym_SEMI, + anon_sym_QMARK, + ACTIONS(3867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3869), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3875), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3877), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46292] = 21, + [54871] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3317), 1, + ACTIONS(3895), 1, anon_sym_COLON, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46364] = 21, + [54940] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3319), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3897), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46436] = 21, + [55009] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3321), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3899), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46508] = 10, + [55078] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, - sym_primitive_type, - ACTIONS(3323), 1, - sym_identifier, - STATE(720), 1, - sym_alignas_qualifier, - STATE(754), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2519), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2517), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2510), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2885), 1, anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2887), 1, anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, + anon_sym_QMARK, + ACTIONS(3901), 1, anon_sym_COLON, - ACTIONS(2512), 10, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [46558] = 21, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55147] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3325), 1, - anon_sym_SEMI, - STATE(676), 1, + ACTIONS(3903), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46630] = 21, + [55216] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COMMA, - ACTIONS(3327), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3905), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46702] = 20, + [55285] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - ACTIONS(3329), 1, + ACTIONS(3907), 1, anon_sym_COLON, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46771] = 20, + [55354] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2638), 1, anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46840] = 20, + [55423] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2660), 1, + anon_sym_RBRACK, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - ACTIONS(3331), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46909] = 20, + [55492] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3333), 1, - anon_sym_RBRACK, - STATE(676), 1, + ACTIONS(3909), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46978] = 20, + [55561] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - ACTIONS(3335), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3911), 1, + anon_sym_RBRACK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47047] = 13, + [55630] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(2422), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(2424), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1442), 1, - sym_parameter_list, - STATE(1486), 1, - sym__abstract_declarator, - ACTIONS(3103), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1093), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3337), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3097), 9, - 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, - [47102] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + ACTIONS(2988), 1, anon_sym_const, - ACTIONS(1948), 1, - anon_sym_LPAREN2, - ACTIONS(1950), 1, - anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(3281), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(975), 1, sym_alignas_qualifier, - STATE(1430), 1, - sym__abstract_declarator, - STATE(1442), 1, + STATE(1742), 1, sym_parameter_list, - ACTIONS(3103), 2, + STATE(1760), 1, + sym__abstract_declarator, + ACTIONS(3571), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(944), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2803), 3, + ACTIONS(3913), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1467), 4, + STATE(1759), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(3565), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -101453,88 +127974,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [47157] = 20, + [55685] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, + ACTIONS(2648), 1, anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47226] = 13, + [55754] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(2422), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(2424), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(2988), 1, + anon_sym_const, + ACTIONS(3281), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(975), 1, sym_alignas_qualifier, - STATE(1442), 1, + STATE(1742), 1, sym_parameter_list, - STATE(1484), 1, + STATE(1774), 1, sym__abstract_declarator, - ACTIONS(3103), 2, + ACTIONS(3571), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1367), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3339), 3, + ACTIONS(3915), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1467), 4, + STATE(1759), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(3565), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -101544,186 +128065,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [47281] = 20, + [55809] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2640), 1, + anon_sym_RBRACK, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3484), 1, + anon_sym_LPAREN2, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - ACTIONS(3341), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47350] = 20, + [55878] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3917), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47419] = 20, + [55947] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3343), 1, - anon_sym_COLON, - STATE(676), 1, + ACTIONS(3919), 1, + anon_sym_RPAREN, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47488] = 13, + [56016] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(2422), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(2424), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(2988), 1, + anon_sym_const, + ACTIONS(3281), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(975), 1, sym_alignas_qualifier, - STATE(1429), 1, - sym__abstract_declarator, - STATE(1442), 1, + STATE(1742), 1, sym_parameter_list, - ACTIONS(3103), 2, + STATE(1775), 1, + sym__abstract_declarator, + ACTIONS(3571), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1351), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3071), 3, + ACTIONS(3921), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1467), 4, + STATE(1759), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3097), 9, + ACTIONS(3565), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -101733,855 +128254,1003 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [47543] = 20, + [56071] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3869), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2881), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2883), 11, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3259), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, - STATE(676), 1, + [56120] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3871), 1, + anon_sym_SLASH, + ACTIONS(3873), 1, + anon_sym_AMP, + ACTIONS(3889), 1, + anon_sym_AMP_AMP, + ACTIONS(3891), 1, + anon_sym_PIPE, + ACTIONS(3893), 1, + anon_sym_CARET, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(3867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3869), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3875), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3877), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47612] = 13, + ACTIONS(2883), 3, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_QMARK, + [56185] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1442), 1, - sym_parameter_list, - STATE(1495), 1, - sym__abstract_declarator, - ACTIONS(3103), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3097), 9, - 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, - [47667] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2180), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, - anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3873), 1, + anon_sym_AMP, + ACTIONS(3891), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3893), 1, anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3259), 1, - anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(3867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3869), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3875), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3877), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47736] = 20, + ACTIONS(2883), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_QMARK, + [56248] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3873), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3347), 1, - anon_sym_RPAREN, - STATE(676), 1, + ACTIONS(3893), 1, + anon_sym_CARET, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3869), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3875), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3877), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47805] = 20, + ACTIONS(2883), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_QMARK, + [56311] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3259), 1, - anon_sym_QMARK, - ACTIONS(3349), 1, - anon_sym_RBRACK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(3867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3869), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3875), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3877), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47874] = 20, + ACTIONS(2883), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_QMARK, + [56370] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, + STATE(915), 1, + sym_argument_list, + ACTIONS(2881), 2, anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - ACTIONS(3351), 1, - anon_sym_COLON, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3869), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3877), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, + ACTIONS(2883), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [47943] = 20, + anon_sym_SEMI, + anon_sym_QMARK, + [56427] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3869), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2881), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2883), 9, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_COMMA, - STATE(676), 1, + [56480] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3871), 1, + anon_sym_SLASH, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3869), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(2881), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(2883), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48012] = 20, + anon_sym_SEMI, + anon_sym_QMARK, + [56531] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3391), 1, + anon_sym_SEMI, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3873), 1, + anon_sym_AMP, + ACTIONS(3887), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3889), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3891), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3893), 1, anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3923), 1, anon_sym_QMARK, - ACTIONS(3355), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3869), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3875), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3877), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48081] = 20, + [56600] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3925), 1, + anon_sym_RBRACK, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48150] = 13, + [56669] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1948), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, - anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1442), 1, - sym_parameter_list, - STATE(1474), 1, - sym__abstract_declarator, - ACTIONS(3103), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1087), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3357), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3639), 1, + anon_sym_AMP_AMP, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_CARET, + ACTIONS(3645), 1, + anon_sym_AMP, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, + anon_sym_QMARK, + ACTIONS(3927), 1, anon_sym_COLON, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3097), 9, - 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, - [48205] = 20, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3633), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3649), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3651), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3653), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56738] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, + ACTIONS(2642), 1, anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48274] = 20, + [56807] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2652), 1, anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3484), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3769), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3773), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3775), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3777), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3779), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_QMARK, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3781), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3783), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3785), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3787), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48343] = 20, + [56876] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3929), 1, + anon_sym_COMMA, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3693), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48412] = 20, + [56945] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3703), 1, anon_sym_QMARK, - ACTIONS(3359), 1, + ACTIONS(3931), 1, anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48481] = 20, + [57014] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 1, - anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(3331), 1, + anon_sym_SEMI, + ACTIONS(3871), 1, + anon_sym_SLASH, + ACTIONS(3873), 1, + anon_sym_AMP, + ACTIONS(3887), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3889), 1, + anon_sym_AMP_AMP, + ACTIONS(3891), 1, + anon_sym_PIPE, + ACTIONS(3893), 1, + anon_sym_CARET, + ACTIONS(3923), 1, + anon_sym_QMARK, + STATE(915), 1, + sym_argument_list, + ACTIONS(2889), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2891), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3867), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3869), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3875), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3877), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3879), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57083] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(2887), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3639), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3641), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3643), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3645), 1, anon_sym_AMP, - ACTIONS(3259), 1, + ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3657), 1, anon_sym_QMARK, - STATE(676), 1, + ACTIONS(3933), 1, + anon_sym_COLON, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(3633), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3637), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3647), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3649), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3651), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3653), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48550] = 20, + [57152] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3363), 1, + anon_sym_SEMI, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3873), 1, + anon_sym_AMP, + ACTIONS(3887), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3889), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3891), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3893), 1, anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3923), 1, anon_sym_QMARK, - ACTIONS(3361), 1, - anon_sym_RPAREN, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3867), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3869), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3875), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3877), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48619] = 20, + [57221] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_LPAREN2, + ACTIONS(2424), 1, + anon_sym_STAR, + ACTIONS(2988), 1, + anon_sym_const, + ACTIONS(3281), 1, + anon_sym_LBRACK, + STATE(975), 1, + sym_alignas_qualifier, + STATE(1696), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + ACTIONS(3571), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(944), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3551), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3565), 9, + 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, + [57276] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_LPAREN2, + ACTIONS(2424), 1, + anon_sym_STAR, + ACTIONS(2988), 1, + anon_sym_const, + ACTIONS(3281), 1, + anon_sym_LBRACK, + STATE(975), 1, + sym_alignas_qualifier, + STATE(1712), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + ACTIONS(3571), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(944), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3287), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3565), 9, + 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, + [57331] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(2459), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(3121), 1, + ACTIONS(3681), 1, anon_sym_SLASH, - ACTIONS(3159), 1, + ACTIONS(3683), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(3685), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, + ACTIONS(3687), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3689), 1, anon_sym_CARET, - ACTIONS(3167), 1, + ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3171), 1, + ACTIONS(3923), 1, anon_sym_QMARK, - ACTIONS(3363), 1, - anon_sym_COLON, - STATE(676), 1, + STATE(915), 1, sym_argument_list, - ACTIONS(2461), 2, + ACTIONS(2889), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, + ACTIONS(2891), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3117), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3119), 2, + ACTIONS(3679), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3695), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3125), 2, + ACTIONS(3697), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3127), 2, + ACTIONS(3699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48688] = 12, + [57397] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3575), 1, anon_sym_STAR, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1325), 1, - sym__field_declarator, - STATE(1953), 1, + STATE(1657), 1, + sym__declarator, + STATE(2247), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 10, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102592,36 +129261,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48740] = 12, + [57449] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1326), 1, - sym__field_declarator, - STATE(1953), 1, + STATE(1591), 1, + sym__declarator, + STATE(2061), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 10, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102632,36 +129301,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48792] = 12, + [57501] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1369), 1, + STATE(1593), 1, sym__declarator, - STATE(1992), 1, + STATE(2061), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102672,36 +129341,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48844] = 12, + [57553] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3579), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3581), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3583), 1, anon_sym_STAR, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1370), 1, - sym__declarator, - STATE(1992), 1, + STATE(1619), 1, + sym__field_declarator, + STATE(2198), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102712,36 +129381,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48896] = 12, + [57605] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3579), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3581), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3583), 1, anon_sym_STAR, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1299), 1, - sym__declarator, - STATE(1967), 1, + STATE(1617), 1, + sym__field_declarator, + STATE(2198), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102752,36 +129421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48948] = 12, + [57657] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1300), 1, + STATE(1592), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102792,36 +129461,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49000] = 12, + [57709] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3575), 1, anon_sym_STAR, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1371), 1, + STATE(1655), 1, sym__declarator, - STATE(1992), 1, + STATE(2247), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102832,83 +129501,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49052] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(2459), 1, - anon_sym_LBRACK, - ACTIONS(3121), 1, - anon_sym_SLASH, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3167), 1, - anon_sym_AMP, - ACTIONS(3171), 1, - anon_sym_QMARK, - STATE(676), 1, - sym_argument_list, - ACTIONS(2461), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2463), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3117), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3119), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3125), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3127), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [49118] = 12, + [57761] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3579), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3581), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3583), 1, anon_sym_STAR, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1301), 1, - sym__declarator, - STATE(1967), 1, + STATE(1618), 1, + sym__field_declarator, + STATE(2198), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102919,36 +129541,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49170] = 12, + [57813] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3575), 1, anon_sym_STAR, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1327), 1, - sym__field_declarator, - STATE(1953), 1, + STATE(1656), 1, + sym__declarator, + STATE(2247), 1, sym_ms_based_modifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 10, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102959,66 +129581,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49222] = 4, + [57865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_SEMI, - ACTIONS(1778), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1772), 18, + STATE(963), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3066), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(3070), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3441), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [49258] = 11, + anon_sym_COLON, + ACTIONS(3438), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + [57904] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2961), 1, anon_sym___based, - ACTIONS(3365), 1, + ACTIONS(3935), 1, sym_identifier, - ACTIONS(3371), 1, + ACTIONS(3944), 1, sym_primitive_type, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, - STATE(1134), 1, + STATE(1433), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2510), 2, + ACTIONS(2956), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2519), 2, + ACTIONS(2965), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(672), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3368), 4, + ACTIONS(3941), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2512), 10, + ACTIONS(3938), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103029,27 +129652,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49307] = 6, + [57953] = 11, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2601), 2, - sym_primitive_type, + ACTIONS(3113), 1, + anon_sym___based, + ACTIONS(3947), 1, sym_identifier, - ACTIONS(2605), 4, + ACTIONS(3956), 1, + sym_primitive_type, + STATE(1191), 1, + sym_alignas_qualifier, + STATE(1420), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3108), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3115), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1405), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3953), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2663), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2660), 12, + ACTIONS(3950), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103060,36 +129690,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - [49346] = 11, + [58002] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2342), 1, + anon_sym_LPAREN2, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3374), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3380), 1, - sym_primitive_type, - STATE(720), 1, - sym_alignas_qualifier, - STATE(1143), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2543), 2, - anon_sym_LPAREN2, + ACTIONS(3271), 1, anon_sym_STAR, - ACTIONS(2552), 2, + ACTIONS(3281), 1, + anon_sym_LBRACK, + STATE(1620), 1, + sym__declarator, + STATE(1688), 1, + sym__abstract_declarator, + STATE(1742), 1, + sym_parameter_list, + STATE(2247), 1, + sym_ms_based_modifier, + ACTIONS(35), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3959), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1767), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [58058] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(502), 1, + sym_alignas_qualifier, + ACTIONS(2981), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1120), 2, + STATE(1408), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3377), 4, + ACTIONS(2974), 9, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2545), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + ACTIONS(3961), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103100,21 +129763,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49395] = 7, + [58096] = 7, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3385), 2, + ACTIONS(3966), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(672), 2, + STATE(1414), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3383), 7, + ACTIONS(3964), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103122,7 +129785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(49), 10, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103133,21 +129796,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49435] = 7, + [58136] = 7, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3389), 2, + ACTIONS(3970), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1125), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3387), 7, + ACTIONS(3968), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103155,7 +129818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(49), 10, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103166,21 +129829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49475] = 7, + [58176] = 7, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3393), 2, + ACTIONS(3974), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(672), 2, + STATE(1410), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3391), 7, + ACTIONS(3972), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103188,7 +129851,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(49), 10, + ACTIONS(3524), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [58216] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1191), 1, + sym_alignas_qualifier, + ACTIONS(2976), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(2981), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1412), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2974), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(3976), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [58256] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1435), 1, + sym_alignas_qualifier, + ACTIONS(2981), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1413), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2974), 4, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_identifier, + ACTIONS(2976), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(3979), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103199,21 +129928,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49515] = 7, + [58296] = 7, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + STATE(1191), 1, sym_alignas_qualifier, ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3397), 2, + ACTIONS(3984), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1123), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3395), 7, + ACTIONS(3982), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103221,7 +129950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(49), 10, + ACTIONS(3524), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103232,101 +129961,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49555] = 15, + [58336] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(2805), 1, + ACTIONS(3520), 1, + anon_sym_LPAREN2, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(1329), 1, - sym__declarator, - STATE(1389), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1992), 1, + ACTIONS(3532), 1, + sym_primitive_type, + STATE(1576), 1, + sym_ms_call_modifier, + STATE(1725), 1, + sym__type_declarator, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(3399), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1478), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, + ACTIONS(3530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1721), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(3986), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58385] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + ACTIONS(3988), 1, + sym_identifier, + STATE(880), 1, + sym__old_style_function_declarator, + STATE(1596), 1, + sym_ms_call_modifier, + STATE(1606), 1, + sym_function_declarator, + STATE(1660), 1, + sym__declarator, + STATE(1731), 1, + sym__declaration_declarator, + STATE(1811), 1, + sym__function_declaration_declarator, + STATE(1892), 1, + sym_init_declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [49611] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN2, - ACTIONS(3014), 1, - anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(1287), 1, - sym_ms_call_modifier, - STATE(1438), 1, - sym__type_declarator, - STATE(1810), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1421), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [49660] = 5, + [58439] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2747), 2, + ACTIONS(3209), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3401), 4, + ACTIONS(3990), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2745), 15, + ACTIONS(3207), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103339,23 +130066,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49694] = 5, + [58473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 1, + sym_identifier, + ACTIONS(3995), 1, + anon_sym_LPAREN2, + ACTIONS(961), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58505] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3999), 1, + anon_sym_LPAREN2, + STATE(1229), 1, + sym_preproc_argument_list, + ACTIONS(4001), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3997), 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, + [58539] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2668), 2, + ACTIONS(3441), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3404), 4, + ACTIONS(4003), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2666), 15, + ACTIONS(3438), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103368,23 +130152,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49728] = 5, + [58573] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2672), 2, + ACTIONS(3153), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3407), 4, + ACTIONS(4007), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2670), 15, + ACTIONS(3151), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103397,23 +130181,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49762] = 5, + [58607] = 5, ACTIONS(3), 1, sym_comment, - STATE(1140), 1, + STATE(1421), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2676), 2, + ACTIONS(2261), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3410), 4, + ACTIONS(4010), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2674), 15, + ACTIONS(2259), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103426,23 +130210,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49796] = 5, + [58641] = 5, ACTIONS(3), 1, sym_comment, - STATE(1141), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2682), 2, + ACTIONS(3103), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3413), 4, + ACTIONS(4013), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2680), 15, + ACTIONS(3101), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103455,23 +130239,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49830] = 5, + [58675] = 15, ACTIONS(3), 1, sym_comment, - STATE(736), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2688), 2, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3573), 1, anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + ACTIONS(3988), 1, + sym_identifier, + STATE(879), 1, + sym__old_style_function_declarator, + STATE(1594), 1, + sym_ms_call_modifier, + STATE(1606), 1, + sym_function_declarator, + STATE(1664), 1, + sym__declarator, + STATE(1741), 1, + sym__declaration_declarator, + STATE(1811), 1, + sym__function_declaration_declarator, + STATE(1869), 1, + sym_init_declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1663), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(3986), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58729] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, anon_sym_STAR, - ACTIONS(3416), 4, + ACTIONS(3140), 1, + anon_sym_LPAREN2, + STATE(1423), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4016), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2686), 15, + ACTIONS(2205), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103484,23 +130308,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49864] = 5, + [58765] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(1429), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2652), 2, + ACTIONS(3241), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3419), 4, + ACTIONS(4019), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2650), 15, + ACTIONS(3239), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103513,179 +130337,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [49898] = 15, + [58799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, + STATE(963), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3237), 2, anon_sym_LPAREN2, - ACTIONS(3107), 1, anon_sym_STAR, - ACTIONS(3422), 1, - sym_identifier, - STATE(653), 1, - sym__old_style_function_declarator, - STATE(1306), 1, - sym_ms_call_modifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1365), 1, - sym__declarator, - STATE(1446), 1, - sym__declaration_declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1597), 1, - sym_init_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49952] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, + ACTIONS(4022), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3235), 15, + anon_sym___extension__, + anon_sym_const, anon_sym___based, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 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_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(649), 1, - sym__old_style_function_declarator, - STATE(1310), 1, - sym_ms_call_modifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1376), 1, - sym__declarator, - STATE(1445), 1, - sym__declaration_declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1586), 1, - sym_init_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [50006] = 15, + [58833] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(652), 1, + STATE(878), 1, sym__old_style_function_declarator, - STATE(1311), 1, - sym_function_declarator, - STATE(1316), 1, + STATE(1600), 1, sym_ms_call_modifier, - STATE(1374), 1, - sym__declarator, - STATE(1468), 1, - sym__declaration_declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1673), 1, - sym_init_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [50060] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 1, - sym_identifier, - STATE(658), 1, - sym__old_style_function_declarator, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1319), 1, - sym_ms_call_modifier, - STATE(1373), 1, + STATE(1666), 1, sym__declarator, - STATE(1459), 1, + STATE(1749), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1644), 1, + STATE(1942), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50114] = 5, + [58887] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2755), 2, + ACTIONS(3122), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3424), 4, + ACTIONS(4025), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2753), 15, + ACTIONS(3120), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103698,23 +130434,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50148] = 5, + [58921] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2759), 2, + ACTIONS(3093), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3427), 4, + ACTIONS(4028), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2757), 15, + ACTIONS(3091), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103727,23 +130463,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50182] = 5, + [58955] = 5, ACTIONS(3), 1, sym_comment, - STATE(1135), 1, + STATE(1417), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2692), 2, + ACTIONS(3126), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3430), 4, + ACTIONS(4031), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2690), 15, + ACTIONS(3124), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103756,23 +130492,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50216] = 5, + [58989] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(1427), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2663), 2, + ACTIONS(3136), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3433), 4, + ACTIONS(4034), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2660), 15, + ACTIONS(3134), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103785,24 +130521,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50250] = 6, + [59023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_STAR, - ACTIONS(2738), 1, - anon_sym_LPAREN2, - STATE(1129), 1, + STATE(963), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3437), 4, + ACTIONS(3145), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4037), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1770), 15, + ACTIONS(3143), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103815,52 +130550,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50286] = 5, + [59057] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3573), 1, anon_sym_LPAREN2, - STATE(1012), 1, - sym_preproc_argument_list, - ACTIONS(3444), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3440), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3577), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50320] = 5, + ACTIONS(3988), 1, + sym_identifier, + STATE(877), 1, + sym__old_style_function_declarator, + STATE(1598), 1, + sym_ms_call_modifier, + STATE(1606), 1, + sym_function_declarator, + STATE(1653), 1, + sym__declarator, + STATE(1727), 1, + sym__declaration_declarator, + STATE(1811), 1, + sym__function_declaration_declarator, + STATE(1857), 1, + sym_init_declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1663), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(3986), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [59111] = 4, ACTIONS(3), 1, sym_comment, - STATE(1130), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2642), 2, + ACTIONS(961), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1266), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3446), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2640), 15, + ACTIONS(1264), 17, anon_sym___extension__, - anon_sym___based, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_const, + anon_sym___based, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103871,25 +130616,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [50354] = 5, + [59143] = 5, ACTIONS(3), 1, sym_comment, - STATE(1131), 1, + STATE(1430), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2698), 2, + ACTIONS(3083), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3449), 4, + ACTIONS(4040), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2696), 15, + ACTIONS(3081), 15, anon_sym___extension__, - anon_sym___based, anon_sym_const, + anon_sym___based, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103902,514 +130646,635 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50388] = 14, + [59177] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(4043), 1, + sym_identifier, + ACTIONS(4045), 1, + anon_sym_RPAREN, + ACTIONS(4047), 1, + anon_sym_LPAREN2, + ACTIONS(4049), 1, + anon_sym_defined, + ACTIONS(4055), 1, + sym_number_literal, + ACTIONS(4051), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4057), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1445), 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, + [59220] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1306), 1, + STATE(1595), 1, sym_ms_call_modifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1394), 1, - sym__declarator, - STATE(1446), 1, + STATE(1755), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1758), 1, + sym__declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1597), 1, + STATE(1865), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50439] = 14, + [59271] = 5, + ACTIONS(3997), 1, + anon_sym_LF, + ACTIONS(4059), 1, + anon_sym_LPAREN2, + ACTIONS(4061), 1, + sym_comment, + STATE(1523), 1, + sym_preproc_argument_list, + ACTIONS(4001), 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, + [59304] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1318), 1, + STATE(1603), 1, sym_ms_call_modifier, - STATE(1445), 1, + STATE(1606), 1, + sym_function_declarator, + STATE(1741), 1, sym__declaration_declarator, - STATE(1469), 1, + STATE(1758), 1, sym__declarator, - STATE(1512), 1, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1586), 1, + STATE(1869), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50490] = 16, + [59355] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4063), 1, anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(4065), 1, anon_sym_RPAREN, - ACTIONS(3460), 1, + ACTIONS(4071), 1, anon_sym_SLASH, - ACTIONS(3462), 1, + ACTIONS(4073), 1, anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(3466), 1, + ACTIONS(4077), 1, anon_sym_PIPE, - ACTIONS(3468), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(3470), 1, + ACTIONS(4081), 1, anon_sym_AMP, - STATE(1619), 1, + STATE(1904), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3456), 2, + ACTIONS(4067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, + ACTIONS(4069), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3472), 2, + ACTIONS(4083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, + ACTIONS(4085), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3476), 2, + ACTIONS(4087), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3478), 2, + ACTIONS(4089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50545] = 16, + [59410] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, - anon_sym_AMP_AMP, - ACTIONS(3466), 1, - anon_sym_PIPE, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3480), 1, - anon_sym_RPAREN, - STATE(1604), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50600] = 14, + ACTIONS(3988), 1, + sym_identifier, + STATE(1596), 1, + sym_ms_call_modifier, + STATE(1606), 1, + sym_function_declarator, + STATE(1677), 1, + sym__declarator, + STATE(1731), 1, + sym__declaration_declarator, + STATE(1811), 1, + sym__function_declaration_declarator, + STATE(1892), 1, + sym_init_declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1663), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(3986), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [59461] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1320), 1, + STATE(1598), 1, sym_ms_call_modifier, - STATE(1459), 1, - sym__declaration_declarator, - STATE(1469), 1, + STATE(1606), 1, + sym_function_declarator, + STATE(1673), 1, sym__declarator, - STATE(1512), 1, + STATE(1727), 1, + sym__declaration_declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1644), 1, + STATE(1857), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50651] = 14, + [59512] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1319), 1, + STATE(1605), 1, sym_ms_call_modifier, - STATE(1402), 1, - sym__declarator, - STATE(1459), 1, + STATE(1606), 1, + sym_function_declarator, + STATE(1749), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1758), 1, + sym__declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1644), 1, + STATE(1942), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50702] = 14, + [59563] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4063), 1, + anon_sym_COMMA, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_AMP, + ACTIONS(4091), 1, + anon_sym_RPAREN, + STATE(1932), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(4067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4085), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4087), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59618] = 4, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4093), 1, + sym_identifier, + ACTIONS(4095), 1, + anon_sym_LPAREN2, + ACTIONS(961), 19, + anon_sym_LF, + 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, + [59649] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1323), 1, + STATE(1608), 1, sym_ms_call_modifier, - STATE(1446), 1, + STATE(1727), 1, sym__declaration_declarator, - STATE(1469), 1, + STATE(1758), 1, sym__declarator, - STATE(1512), 1, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1597), 1, + STATE(1857), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50753] = 9, + [59700] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(2917), 1, - anon_sym_const, - ACTIONS(2924), 1, - anon_sym_LBRACE, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(3484), 1, - anon_sym_COLON, - STATE(774), 1, - sym_attribute_specifier, - STATE(1044), 1, - sym_enumerator_list, - ACTIONS(2919), 14, + ACTIONS(4043), 1, + sym_identifier, + ACTIONS(4047), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - [50794] = 14, + ACTIONS(4049), 1, + anon_sym_defined, + ACTIONS(4097), 1, + anon_sym_RPAREN, + ACTIONS(4099), 1, + sym_number_literal, + ACTIONS(4051), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4057), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1441), 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, + [59743] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1309), 1, + STATE(1601), 1, sym_ms_call_modifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1469), 1, - sym__declarator, - STATE(1494), 1, + STATE(1731), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1758), 1, + sym__declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1740), 1, + STATE(1892), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50845] = 16, + [59794] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4063), 1, anon_sym_COMMA, - ACTIONS(3460), 1, + ACTIONS(4071), 1, anon_sym_SLASH, - ACTIONS(3462), 1, + ACTIONS(4073), 1, anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(3466), 1, + ACTIONS(4077), 1, anon_sym_PIPE, - ACTIONS(3468), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(3470), 1, + ACTIONS(4081), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(4101), 1, anon_sym_RPAREN, - STATE(1582), 1, + STATE(1950), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3456), 2, + ACTIONS(4067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, + ACTIONS(4069), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3472), 2, + ACTIONS(4083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, + ACTIONS(4085), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3476), 2, + ACTIONS(4087), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3478), 2, + ACTIONS(4089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50900] = 14, + [59849] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1322), 1, + STATE(1610), 1, sym_ms_call_modifier, - STATE(1468), 1, - sym__declaration_declarator, - STATE(1469), 1, + STATE(1758), 1, sym__declarator, - STATE(1512), 1, + STATE(1762), 1, + sym__declaration_declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1673), 1, + STATE(1976), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50951] = 14, + [59900] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1312), 1, + STATE(1594), 1, sym_ms_call_modifier, - STATE(1457), 1, - sym__declaration_declarator, - STATE(1469), 1, + STATE(1606), 1, + sym_function_declarator, + STATE(1680), 1, sym__declarator, - STATE(1512), 1, + STATE(1741), 1, + sym__declaration_declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1635), 1, + STATE(1869), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51002] = 14, + [59951] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(2249), 1, + anon_sym_LBRACE, + ACTIONS(3411), 1, + anon_sym_const, + ACTIONS(4103), 1, + anon_sym___attribute__, + ACTIONS(4105), 1, + anon_sym_COLON, + STATE(986), 1, + sym_attribute_specifier, + STATE(1332), 1, + sym_enumerator_list, + ACTIONS(3413), 14, anon_sym_LPAREN2, - ACTIONS(3107), 1, anon_sym_STAR, - ACTIONS(3422), 1, - sym_identifier, - STATE(1307), 1, - sym_ms_call_modifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1453), 1, - sym__declaration_declarator, - STATE(1469), 1, - sym__declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1620), 1, - sym_init_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51053] = 10, + 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_alignas, + anon_sym__Alignas, + [59992] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3491), 1, - anon_sym_RPAREN, - ACTIONS(3493), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3501), 1, + ACTIONS(4108), 1, + anon_sym_RPAREN, + ACTIONS(4110), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1150), 7, + STATE(1450), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104417,69 +131282,67 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51096] = 14, + [60035] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1310), 1, + STATE(1600), 1, sym_ms_call_modifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1404), 1, + STATE(1678), 1, sym__declarator, - STATE(1445), 1, + STATE(1749), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1586), 1, + STATE(1942), 1, sym_init_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51147] = 10, + [60086] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3505), 1, - anon_sym_RPAREN, - ACTIONS(3507), 1, + ACTIONS(4122), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1151), 7, + STATE(1526), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104487,32 +131350,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51190] = 10, + [60126] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3509), 1, - anon_sym_RPAREN, - ACTIONS(3511), 1, + ACTIONS(4126), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1157), 7, + STATE(1521), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104520,95 +131381,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51233] = 14, + [60166] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(4112), 1, sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1316), 1, - sym_ms_call_modifier, - STATE(1378), 1, - sym__declarator, - STATE(1468), 1, - sym__declaration_declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1673), 1, - sym_init_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51284] = 5, - ACTIONS(3440), 1, - anon_sym_LF, - ACTIONS(3513), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3515), 1, - sym_comment, - STATE(1240), 1, - sym_preproc_argument_list, - ACTIONS(3444), 18, + ACTIONS(4116), 1, + anon_sym_defined, + ACTIONS(4128), 1, + sym_number_literal, + ACTIONS(4118), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4120), 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, - [51317] = 9, + ACTIONS(4124), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1545), 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, + [60206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3517), 1, + ACTIONS(4130), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1202), 7, + STATE(1528), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104616,80 +131443,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2413), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2415), 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, - [51385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3521), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3519), 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, - [51413] = 9, + [60246] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3533), 1, + ACTIONS(4132), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1226), 7, + STATE(1513), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104697,65 +131474,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51453] = 13, + [60286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3464), 1, - anon_sym_AMP_AMP, - ACTIONS(3466), 1, - anon_sym_PIPE, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3519), 3, + ACTIONS(2111), 1, + anon_sym_LPAREN2, + STATE(1756), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(2113), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + ACTIONS(961), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [51501] = 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + [60318] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3537), 1, + ACTIONS(4134), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1239), 7, + STATE(1492), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104763,30 +131532,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51541] = 9, + [60358] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3539), 1, + ACTIONS(4136), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1178), 7, + STATE(1476), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104794,30 +131563,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51581] = 9, + [60398] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3541), 1, + ACTIONS(4138), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1250), 7, + STATE(1516), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104825,30 +131594,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51621] = 9, + [60438] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3543), 1, + ACTIONS(4140), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1241), 7, + STATE(1519), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104856,55 +131625,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3547), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3545), 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, - [51689] = 9, + [60478] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3549), 1, + ACTIONS(4142), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1220), 7, + STATE(1536), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104912,64 +131656,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51729] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3466), 1, - anon_sym_PIPE, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3456), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3519), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [51775] = 9, + [60518] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3551), 1, + ACTIONS(4144), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1251), 7, + STATE(1538), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104977,66 +131687,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51815] = 14, + [60558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, - anon_sym_AMP_AMP, - ACTIONS(3466), 1, - anon_sym_PIPE, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3456), 2, + ACTIONS(4112), 1, + sym_identifier, + ACTIONS(4114), 1, + anon_sym_LPAREN2, + ACTIONS(4116), 1, + anon_sym_defined, + ACTIONS(4146), 1, + sym_number_literal, + ACTIONS(4118), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3553), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51865] = 9, + ACTIONS(4124), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1531), 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, + [60598] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3555), 1, + ACTIONS(4148), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1227), 7, + STATE(1529), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105044,64 +131749,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51905] = 12, + [60638] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3468), 1, - anon_sym_CARET, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3521), 1, - anon_sym_PIPE, - ACTIONS(3456), 2, + ACTIONS(4112), 1, + sym_identifier, + ACTIONS(4114), 1, + anon_sym_LPAREN2, + ACTIONS(4116), 1, + anon_sym_defined, + ACTIONS(4150), 1, + sym_number_literal, + ACTIONS(4118), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3519), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [51951] = 9, + ACTIONS(4124), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1525), 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, + [60678] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3557), 1, + ACTIONS(4152), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 7, + STATE(1515), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105109,63 +131811,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51991] = 11, + [60718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(2869), 5, anon_sym_SLASH, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3521), 1, anon_sym_PIPE, - ACTIONS(3456), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2871), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3472), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3478), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3519), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [52035] = 9, + [60746] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3559), 1, + ACTIONS(4154), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1242), 7, + STATE(1544), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105173,30 +131867,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52075] = 9, + [60786] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3561), 1, + ACTIONS(4156), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1187), 7, + STATE(1534), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105204,62 +131898,80 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52115] = 10, + [60826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(4160), 5, anon_sym_SLASH, - ACTIONS(3456), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4158), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3472), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3478), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3521), 2, + [60854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3519), 5, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4162), 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, - [52157] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60882] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3563), 1, + ACTIONS(4166), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1228), 7, + STATE(1494), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105267,47 +131979,78 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52197] = 9, + [60922] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3456), 2, + ACTIONS(4112), 1, + sym_identifier, + ACTIONS(4114), 1, + anon_sym_LPAREN2, + ACTIONS(4116), 1, + anon_sym_defined, + ACTIONS(4168), 1, + sym_number_literal, + ACTIONS(4118), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3521), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3519), 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, - [52237] = 3, + ACTIONS(4124), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1548), 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, + [60962] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4043), 1, + sym_identifier, + ACTIONS(4047), 1, + anon_sym_LPAREN2, + ACTIONS(4049), 1, + anon_sym_defined, + ACTIONS(4170), 1, + sym_number_literal, + ACTIONS(4051), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4053), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4057), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1495), 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, + [61002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 5, + ACTIONS(4174), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3565), 15, + ACTIONS(4172), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105323,30 +132066,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [52265] = 9, + [61030] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3569), 1, + ACTIONS(4176), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1238), 7, + STATE(1497), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105354,30 +132097,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52305] = 9, + [61070] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3571), 1, + ACTIONS(4178), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1189), 7, + STATE(1498), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105385,30 +132128,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52345] = 9, + [61110] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3573), 1, + ACTIONS(4180), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1180), 7, + STATE(1499), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105416,30 +132159,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52385] = 9, + [61150] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3575), 1, + ACTIONS(4182), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1237), 7, + STATE(1500), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105447,30 +132190,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52425] = 9, + [61190] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3577), 1, + ACTIONS(4184), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1229), 7, + STATE(1501), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105478,30 +132221,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52465] = 9, + [61230] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3579), 1, + ACTIONS(4186), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1233), 7, + STATE(1502), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105509,30 +132252,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52505] = 9, + [61270] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3581), 1, + ACTIONS(4188), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 7, + STATE(1503), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105540,30 +132283,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52545] = 9, + [61310] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3583), 1, + ACTIONS(4190), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1176), 7, + STATE(1533), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105571,30 +132314,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52585] = 9, + [61350] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3585), 1, + ACTIONS(4192), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1235), 7, + STATE(1524), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105602,30 +132345,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52625] = 9, + [61390] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3587), 1, + ACTIONS(4194), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1260), 7, + STATE(1514), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105633,30 +132376,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52665] = 9, + [61430] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3589), 1, + ACTIONS(4196), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1230), 7, + STATE(1542), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105664,28 +132407,58 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52705] = 7, + [61470] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(4071), 1, anon_sym_SLASH, - ACTIONS(3456), 2, + ACTIONS(4073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_AMP, + ACTIONS(4067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, + ACTIONS(4069), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3478), 2, + ACTIONS(4083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4085), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4087), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3521), 4, + ACTIONS(4198), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4202), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3519), 9, + ACTIONS(4200), 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, @@ -105693,213 +132466,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [52741] = 9, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - sym_identifier, - ACTIONS(3525), 1, - anon_sym_LPAREN2, - ACTIONS(3527), 1, - anon_sym_defined, - ACTIONS(3591), 1, - sym_number_literal, - ACTIONS(3529), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4206), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4204), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1225), 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, - [52781] = 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - sym_identifier, - ACTIONS(3525), 1, - anon_sym_LPAREN2, - ACTIONS(3527), 1, - anon_sym_defined, - ACTIONS(3593), 1, - sym_number_literal, - ACTIONS(3529), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4206), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4204), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1253), 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, - [52821] = 6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_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, + [61608] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(4071), 1, anon_sym_SLASH, - ACTIONS(3456), 2, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_AMP, + ACTIONS(4067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, + ACTIONS(4069), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3521), 4, + ACTIONS(4083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4085), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4087), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [61656] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4077), 1, anon_sym_PIPE, + ACTIONS(4079), 1, + anon_sym_CARET, + ACTIONS(4081), 1, anon_sym_AMP, + ACTIONS(4067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4085), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3519), 11, + ACTIONS(4087), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + [61702] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, + anon_sym_AMP, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(4085), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4087), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(4089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52855] = 9, + ACTIONS(4204), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [61748] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - sym_identifier, - ACTIONS(3525), 1, - anon_sym_LPAREN2, - ACTIONS(3527), 1, - anon_sym_defined, - ACTIONS(3595), 1, - sym_number_literal, - ACTIONS(3529), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4081), 1, + anon_sym_AMP, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(4067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1254), 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, - [52895] = 9, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4085), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4087), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [61792] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - sym_identifier, - ACTIONS(3525), 1, - anon_sym_LPAREN2, - ACTIONS(3527), 1, - anon_sym_defined, - ACTIONS(3597), 1, - sym_number_literal, - ACTIONS(3529), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1231), 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, - [52935] = 9, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4085), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4087), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4206), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4204), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [61834] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, - sym_identifier, - ACTIONS(3493), 1, - anon_sym_LPAREN2, - ACTIONS(3495), 1, - anon_sym_defined, - ACTIONS(3599), 1, - sym_number_literal, - ACTIONS(3497), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1171), 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, - [52975] = 9, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4085), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4087), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4206), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4204), 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, + [61874] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4206), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4204), 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, + [61910] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4206), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4204), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3601), 1, + ACTIONS(4208), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1236), 7, + STATE(1532), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105907,30 +132807,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53015] = 9, + [61984] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3603), 1, + ACTIONS(4210), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1257), 7, + STATE(1517), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105938,30 +132838,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53055] = 9, + [62024] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3605), 1, + ACTIONS(4212), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1258), 7, + STATE(1547), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105969,30 +132869,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53095] = 9, + [62064] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3607), 1, + ACTIONS(4214), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1224), 7, + STATE(1518), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106000,55 +132900,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3611), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 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, - [53163] = 9, + [62104] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3613), 1, + ACTIONS(4216), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1223), 7, + STATE(1541), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106056,30 +132931,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53203] = 9, + [62144] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3525), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3527), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3615), 1, + ACTIONS(4218), 1, sym_number_literal, - ACTIONS(3529), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3531), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3535), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1232), 7, + STATE(1551), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106087,30 +132962,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53243] = 9, + [62184] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4114), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4116), 1, anon_sym_defined, - ACTIONS(3617), 1, + ACTIONS(4220), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4118), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4120), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4124), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1182), 7, + STATE(1535), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106118,30 +132993,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53283] = 9, + [62224] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3493), 1, + ACTIONS(4047), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(4049), 1, anon_sym_defined, - ACTIONS(3619), 1, + ACTIONS(4222), 1, sym_number_literal, - ACTIONS(3497), 2, + ACTIONS(4051), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3499), 2, + ACTIONS(4053), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3503), 5, + ACTIONS(4057), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1184), 7, + STATE(1496), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106149,378 +133024,291 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53323] = 3, - ACTIONS(3), 1, + [62264] = 3, + ACTIONS(2871), 1, + anon_sym_LF, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3623), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3621), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2869), 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, - [53351] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3489), 1, - sym_identifier, - ACTIONS(3493), 1, - anon_sym_LPAREN2, - ACTIONS(3495), 1, - anon_sym_defined, - ACTIONS(3625), 1, - sym_number_literal, - ACTIONS(3497), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3499), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3503), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1169), 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, - [53391] = 5, - ACTIONS(3), 1, + [62291] = 11, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3521), 4, + ACTIONS(4204), 1, + anon_sym_LF, + ACTIONS(4228), 1, anon_sym_PIPE, + ACTIONS(4230), 1, + anon_sym_CARET, + ACTIONS(4232), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3519), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4206), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(4224), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53423] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3523), 1, - sym_identifier, - ACTIONS(3525), 1, - anon_sym_LPAREN2, - ACTIONS(3527), 1, - anon_sym_defined, - ACTIONS(3627), 1, - sym_number_literal, - ACTIONS(3529), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3531), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3535), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1248), 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, - [53463] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, + ACTIONS(4226), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, - anon_sym_AMP_AMP, - ACTIONS(3466), 1, + anon_sym_PERCENT, + ACTIONS(4236), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [62334] = 12, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3468), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3470), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3629), 1, - anon_sym_RPAREN, - ACTIONS(3456), 2, + ACTIONS(4240), 1, + anon_sym_LF, + ACTIONS(4242), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53512] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3519), 1, - anon_sym_LF, - ACTIONS(3521), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4236), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [62379] = 12, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4228), 1, anon_sym_PIPE, + ACTIONS(4230), 1, anon_sym_CARET, + ACTIONS(4232), 1, anon_sym_AMP, + ACTIONS(4242), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4246), 1, + anon_sym_LF, + ACTIONS(4224), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(4238), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4226), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53539] = 12, - ACTIONS(3515), 1, + [62424] = 10, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(4204), 1, anon_sym_LF, - ACTIONS(3521), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4206), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53584] = 11, - ACTIONS(3515), 1, + [62465] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3519), 1, - anon_sym_LF, - ACTIONS(3637), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3521), 2, + ACTIONS(4242), 1, anon_sym_PIPE_PIPE, + ACTIONS(4244), 1, anon_sym_AMP_AMP, - ACTIONS(3631), 2, + ACTIONS(4248), 1, + anon_sym_LF, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53627] = 10, - ACTIONS(3515), 1, + [62510] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3519), 1, - anon_sym_LF, - ACTIONS(3639), 1, + ACTIONS(4228), 1, + anon_sym_PIPE, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3631), 2, + ACTIONS(4242), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4250), 1, + anon_sym_LF, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3521), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53668] = 9, - ACTIONS(3515), 1, + [62555] = 9, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(4204), 1, anon_sym_LF, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3521), 4, + ACTIONS(4206), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53707] = 8, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3519), 1, + [62594] = 3, + ACTIONS(3617), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(3615), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3647), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3633), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3521), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [53744] = 7, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3519), 1, - anon_sym_LF, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3647), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3645), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3521), 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, - [53779] = 6, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3519), 1, - anon_sym_LF, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3647), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + [62621] = 4, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4204), 1, + anon_sym_LF, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3521), 11, + ACTIONS(4206), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106532,19 +133320,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53812] = 5, - ACTIONS(3515), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62650] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + STATE(884), 1, + sym__old_style_function_declarator, + STATE(1629), 1, + sym_ms_call_modifier, + STATE(1675), 1, + sym__declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3986), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62693] = 3, + ACTIONS(3631), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(3629), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3521), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106558,137 +133378,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53843] = 12, - ACTIONS(3515), 1, + [62720] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_LF, - ACTIONS(3651), 1, + ACTIONS(4242), 1, anon_sym_PIPE_PIPE, - ACTIONS(3631), 2, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4252), 1, + anon_sym_LF, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53888] = 14, - ACTIONS(3), 1, + [62765] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3460), 1, - anon_sym_SLASH, - ACTIONS(3462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3464), 1, - anon_sym_AMP_AMP, - ACTIONS(3466), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3468), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3470), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3653), 1, - anon_sym_RPAREN, - ACTIONS(3456), 2, + ACTIONS(4242), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_LF, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3472), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3474), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3476), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3478), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53937] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3621), 1, - anon_sym_LF, - ACTIONS(3623), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53964] = 12, - ACTIONS(3515), 1, + [62810] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(4242), 1, anon_sym_PIPE_PIPE, - ACTIONS(3655), 1, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4256), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54009] = 3, - ACTIONS(3515), 1, + [62855] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3545), 1, + ACTIONS(4172), 1, anon_sym_LF, - ACTIONS(3547), 18, + ACTIONS(4174), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106707,51 +133501,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54036] = 12, - ACTIONS(3515), 1, + [62882] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(4204), 1, + anon_sym_LF, + ACTIONS(4206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3657), 1, - anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54081] = 4, - ACTIONS(3515), 1, + [62927] = 5, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(4204), 1, anon_sym_LF, - ACTIONS(3633), 3, + ACTIONS(4224), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3521), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4206), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106765,50 +133560,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54110] = 12, - ACTIONS(3515), 1, + [62958] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_CARET, - ACTIONS(3641), 1, - anon_sym_AMP, - ACTIONS(3651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3659), 1, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + STATE(872), 1, + sym__old_style_function_declarator, + STATE(1640), 1, + sym_ms_call_modifier, + STATE(1672), 1, + sym__declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3986), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [63001] = 6, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4204), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3645), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [54155] = 3, - ACTIONS(3203), 1, - anon_sym_LF, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3201), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4206), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106820,241 +133619,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54182] = 12, - ACTIONS(3515), 1, + [63034] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(4242), 1, anon_sym_PIPE_PIPE, - ACTIONS(3661), 1, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4258), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54227] = 12, - ACTIONS(3515), 1, + [63079] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 1, + ACTIONS(4071), 1, + anon_sym_SLASH, + ACTIONS(4073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(4077), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4079), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4081), 1, anon_sym_AMP, - ACTIONS(3651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3663), 1, - anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4260), 1, + anon_sym_RPAREN, + ACTIONS(4067), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3647), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4069), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4085), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(4087), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [54272] = 3, - ACTIONS(2415), 1, - anon_sym_LF, - ACTIONS(3515), 1, + ACTIONS(4089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63128] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(4071), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4073), 1, anon_sym_PIPE_PIPE, + ACTIONS(4075), 1, anon_sym_AMP_AMP, + ACTIONS(4077), 1, anon_sym_PIPE, + ACTIONS(4079), 1, anon_sym_CARET, + ACTIONS(4081), 1, anon_sym_AMP, + ACTIONS(4262), 1, + anon_sym_RPAREN, + ACTIONS(4067), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4069), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(4085), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(4087), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(4089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54299] = 3, - ACTIONS(3199), 1, - anon_sym_LF, - ACTIONS(3515), 1, + [63177] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3197), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4228), 1, anon_sym_PIPE, + ACTIONS(4230), 1, anon_sym_CARET, + ACTIONS(4232), 1, anon_sym_AMP, + ACTIONS(4242), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4264), 1, + anon_sym_LF, + ACTIONS(4224), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(4238), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4226), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54326] = 3, - ACTIONS(3515), 1, + [63222] = 8, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(4204), 1, anon_sym_LF, - ACTIONS(3567), 18, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4238), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4236), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4206), 5, 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, - [54353] = 11, + [63259] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(662), 1, + STATE(886), 1, sym__old_style_function_declarator, - STATE(1354), 1, + STATE(1625), 1, sym_ms_call_modifier, - STATE(1393), 1, + STATE(1676), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [54396] = 3, - ACTIONS(3193), 1, - anon_sym_LF, - ACTIONS(3515), 1, + [63302] = 7, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3191), 18, + ACTIONS(4204), 1, + anon_sym_LF, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4238), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54423] = 12, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3635), 1, + ACTIONS(4206), 7, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3639), 1, anon_sym_CARET, - ACTIONS(3641), 1, anon_sym_AMP, - ACTIONS(3651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3665), 1, - anon_sym_LF, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3633), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3645), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [54468] = 3, - ACTIONS(3189), 1, + [63337] = 3, + ACTIONS(3623), 1, anon_sym_LF, - ACTIONS(3515), 1, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3187), 18, + ACTIONS(3621), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107073,208 +133868,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54495] = 12, - ACTIONS(3515), 1, + [63364] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + STATE(876), 1, + sym__old_style_function_declarator, + STATE(1646), 1, + sym_ms_call_modifier, + STATE(1687), 1, + sym__declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(3986), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [63407] = 12, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(4242), 1, anon_sym_PIPE_PIPE, - ACTIONS(3667), 1, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4266), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54540] = 12, - ACTIONS(3515), 1, + [63452] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(4242), 1, anon_sym_PIPE_PIPE, - ACTIONS(3669), 1, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4268), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54585] = 11, + [63497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, + ACTIONS(2179), 2, anon_sym_LPAREN2, - ACTIONS(3107), 1, anon_sym_STAR, - STATE(659), 1, - sym__old_style_function_declarator, - STATE(1349), 1, - sym_ms_call_modifier, - STATE(1381), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54628] = 12, - ACTIONS(3515), 1, + ACTIONS(2177), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(961), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + [63526] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(4242), 1, anon_sym_PIPE_PIPE, - ACTIONS(3671), 1, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4270), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54673] = 12, - ACTIONS(3515), 1, + [63571] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_CARET, - ACTIONS(3641), 1, - anon_sym_AMP, - ACTIONS(3651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3673), 1, + ACTIONS(4204), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4206), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3647), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3633), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 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, - [54718] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - STATE(655), 1, - sym__old_style_function_declarator, - STATE(1355), 1, - sym_ms_call_modifier, - STATE(1400), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54761] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(3609), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63598] = 3, + ACTIONS(3627), 1, anon_sym_LF, - ACTIONS(3611), 18, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(3625), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107293,218 +134072,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54788] = 12, - ACTIONS(3515), 1, + [63625] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(4242), 1, anon_sym_PIPE_PIPE, - ACTIONS(3675), 1, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4272), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54833] = 12, - ACTIONS(3515), 1, + [63670] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, + ACTIONS(4162), 1, + anon_sym_LF, + ACTIONS(4164), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3637), 1, anon_sym_PIPE, - ACTIONS(3639), 1, anon_sym_CARET, - ACTIONS(3641), 1, anon_sym_AMP, - ACTIONS(3651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3677), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63697] = 3, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4158), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4160), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + [63724] = 3, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4200), 1, + anon_sym_LF, + ACTIONS(4202), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 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, - [54878] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - STATE(648), 1, - sym__old_style_function_declarator, - STATE(1358), 1, - sym_ms_call_modifier, - STATE(1401), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54921] = 12, - ACTIONS(3515), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63751] = 12, + ACTIONS(4061), 1, sym_comment, - ACTIONS(3635), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(4230), 1, anon_sym_CARET, - ACTIONS(3641), 1, + ACTIONS(4232), 1, anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(4242), 1, anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, + ACTIONS(4244), 1, + anon_sym_AMP_AMP, + ACTIONS(4274), 1, anon_sym_LF, - ACTIONS(3631), 2, + ACTIONS(4224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(4234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3647), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3633), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3645), 4, + ACTIONS(4236), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54966] = 10, + [63796] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(1355), 1, + STATE(1623), 1, sym_ms_call_modifier, - STATE(1416), 1, + STATE(1726), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55006] = 10, + [63836] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(1358), 1, + STATE(1625), 1, sym_ms_call_modifier, - STATE(1435), 1, + STATE(1723), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55046] = 8, + [63876] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(2342), 1, + anon_sym_LPAREN2, + ACTIONS(2344), 1, + anon_sym_STAR, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3685), 1, + ACTIONS(3281), 1, + anon_sym_LBRACK, + STATE(1730), 1, + sym__declarator, + STATE(1742), 1, + sym_parameter_list, + STATE(1849), 1, + sym__abstract_declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1759), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [63920] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4276), 1, + sym_identifier, + ACTIONS(4280), 1, anon_sym_LBRACK, - STATE(1275), 1, + STATE(1566), 1, sym_gnu_asm_expression, - ACTIONS(35), 2, + ACTIONS(2183), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(93), 3, + ACTIONS(4282), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - STATE(1273), 3, + STATE(1573), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3683), 7, + ACTIONS(4278), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107512,291 +134330,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55082] = 10, + [63956] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(1338), 1, + STATE(1646), 1, sym_ms_call_modifier, - STATE(1454), 1, + STATE(1715), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55122] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3111), 1, - sym_identifier, - ACTIONS(3113), 1, - anon_sym_LPAREN2, - ACTIONS(3115), 1, - anon_sym_STAR, - STATE(1356), 1, - sym_ms_call_modifier, - STATE(1470), 1, - sym__field_declarator, - STATE(1953), 1, - sym_ms_based_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55162] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - ACTIONS(1825), 1, - anon_sym_STAR, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(2813), 1, - anon_sym_LBRACK, - STATE(1442), 1, - sym_parameter_list, - STATE(1443), 1, - sym__declarator, - STATE(1547), 1, - sym__abstract_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1467), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [55206] = 10, + [63996] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(1354), 1, + STATE(1629), 1, sym_ms_call_modifier, - STATE(1412), 1, + STATE(1707), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55246] = 11, + [64036] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(4276), 1, sym_identifier, - ACTIONS(3685), 1, + ACTIONS(4280), 1, anon_sym_LBRACK, - STATE(1272), 1, + STATE(1564), 1, sym_gnu_asm_expression, - STATE(1313), 1, + STATE(1612), 1, sym_attribute_specifier, - STATE(1396), 1, + STATE(1671), 1, aux_sym_type_definition_repeat1, - ACTIONS(35), 2, + ACTIONS(2183), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(3687), 2, + ACTIONS(4284), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1273), 2, + STATE(1573), 2, sym_preproc_call_expression, aux_sym_function_declarator_repeat1, - ACTIONS(93), 3, + ACTIONS(4282), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3683), 4, + ACTIONS(4278), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55288] = 10, + [64078] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(1349), 1, + STATE(1640), 1, sym_ms_call_modifier, - STATE(1408), 1, + STATE(1700), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(3986), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55328] = 6, + [64118] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 1, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3579), 1, sym_identifier, - ACTIONS(3694), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1270), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3697), 4, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(3692), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3581), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55359] = 11, + ACTIONS(3583), 1, + anon_sym_STAR, + STATE(1636), 1, + sym_ms_call_modifier, + STATE(1738), 1, + sym__field_declarator, + STATE(2198), 1, + sym_ms_based_modifier, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(3986), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [64158] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1628), 1, sym__type_declarator, - STATE(1523), 1, + STATE(1803), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55400] = 10, + [64199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(4276), 1, sym_identifier, - ACTIONS(3703), 1, - anon_sym_LBRACK, - STATE(1313), 1, - sym_attribute_specifier, - STATE(1380), 1, - aux_sym_type_definition_repeat1, - ACTIONS(35), 2, + ACTIONS(2183), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(3699), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1281), 2, + STATE(1563), 3, sym_preproc_call_expression, + sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3705), 3, + ACTIONS(4288), 4, + anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3701), 4, + ACTIONS(4286), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55439] = 6, + [64230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(4290), 1, sym_identifier, - ACTIONS(35), 2, + ACTIONS(4295), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1270), 3, + STATE(1563), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3703), 4, + ACTIONS(4298), 4, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3701), 7, + ACTIONS(4293), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107804,54 +134561,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55470] = 11, + [64261] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4276), 1, + sym_identifier, + ACTIONS(4304), 1, + anon_sym_LBRACK, + STATE(1612), 1, + sym_attribute_specifier, + STATE(1668), 1, + aux_sym_type_definition_repeat1, + ACTIONS(2183), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4300), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1562), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(4306), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(4302), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [64300] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1628), 1, sym__type_declarator, - STATE(1510), 1, + STATE(1787), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55511] = 6, + [64341] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(4276), 1, sym_identifier, - ACTIONS(35), 2, + ACTIONS(2183), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1281), 3, + STATE(1562), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3703), 4, + ACTIONS(4304), 4, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3701), 7, + ACTIONS(4302), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107859,284 +134645,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55542] = 11, + [64372] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1628), 1, sym__type_declarator, - STATE(1499), 1, + STATE(1794), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55583] = 11, + [64413] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1628), 1, sym__type_declarator, - STATE(1501), 1, + STATE(1792), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55624] = 11, + [64454] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1628), 1, sym__type_declarator, - STATE(1503), 1, + STATE(1805), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55665] = 11, + [64495] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1628), 1, sym__type_declarator, - STATE(1508), 1, + STATE(1809), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55706] = 11, + [64536] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1628), 1, sym__type_declarator, - STATE(1519), 1, + STATE(1800), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3681), 1, - sym_identifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1270), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3709), 4, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(3707), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55778] = 11, + [64577] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1350), 1, + STATE(1628), 1, sym__type_declarator, - STATE(1522), 1, + STATE(1789), 1, sym__type_definition_declarators, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55819] = 12, + [64618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(4276), 1, sym_identifier, - ACTIONS(3113), 1, - anon_sym_LPAREN2, - ACTIONS(3115), 1, - anon_sym_STAR, - ACTIONS(3711), 1, - anon_sym_SEMI, - STATE(1303), 1, - sym__field_declarator, - STATE(1543), 1, - sym__field_declaration_declarator, - STATE(1921), 1, - sym_attribute_specifier, - STATE(1953), 1, - sym_ms_based_modifier, - ACTIONS(35), 2, + ACTIONS(2183), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [55861] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3111), 1, - sym_identifier, - ACTIONS(3113), 1, + STATE(1563), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(4304), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(4302), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3115), 1, - anon_sym_STAR, - ACTIONS(3713), 1, anon_sym_SEMI, - STATE(1303), 1, - sym__field_declarator, - STATE(1533), 1, - sym__field_declaration_declarator, - STATE(1929), 1, - sym_attribute_specifier, - STATE(1953), 1, - sym_ms_based_modifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [55903] = 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [64649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, + ACTIONS(4312), 1, anon_sym_LBRACK_LBRACK, - STATE(1285), 2, + STATE(1574), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3717), 3, + ACTIONS(4310), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3715), 10, + ACTIONS(4308), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108147,297 +134873,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [55931] = 12, + [64677] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3579), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3581), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3583), 1, anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(4315), 1, anon_sym_SEMI, - STATE(1303), 1, + STATE(1604), 1, sym__field_declarator, - STATE(1568), 1, + STATE(1850), 1, sym__field_declaration_declarator, - STATE(1886), 1, + STATE(2168), 1, sym_attribute_specifier, - STATE(1953), 1, + STATE(2198), 1, sym_ms_based_modifier, ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1395), 5, + STATE(1692), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [55973] = 10, + [64719] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1461), 1, + STATE(1751), 1, sym__type_declarator, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [56011] = 10, + [64757] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3520), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3522), 1, anon_sym_STAR, - ACTIONS(3018), 1, + ACTIONS(3532), 1, sym_primitive_type, - STATE(1363), 1, + STATE(1659), 1, sym__type_declarator, - STATE(1810), 1, + STATE(2224), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3530), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1421), 5, + STATE(1721), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [56049] = 5, + [64795] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3579), 1, + sym_identifier, + ACTIONS(3581), 1, anon_sym_LPAREN2, - STATE(1012), 1, - sym_preproc_argument_list, - ACTIONS(3726), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3583), 1, + anon_sym_STAR, + ACTIONS(4317), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3724), 7, + STATE(1604), 1, + sym__field_declarator, + STATE(1815), 1, + sym__field_declaration_declarator, + STATE(2086), 1, + sym_attribute_specifier, + STATE(2198), 1, + sym_ms_based_modifier, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - [56076] = 3, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [64837] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 7, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3579), 1, + sym_identifier, + ACTIONS(3581), 1, + anon_sym_LPAREN2, + ACTIONS(3583), 1, + anon_sym_STAR, + ACTIONS(4319), 1, + anon_sym_SEMI, + STATE(1604), 1, + sym__field_declarator, + STATE(1816), 1, + sym__field_declaration_declarator, + STATE(2141), 1, + sym_attribute_specifier, + STATE(2198), 1, + sym_ms_based_modifier, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - ACTIONS(2884), 8, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [64879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3999), 1, + anon_sym_LPAREN2, + STATE(1229), 1, + sym_preproc_argument_list, + ACTIONS(4323), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [56099] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(3730), 1, - aux_sym_preproc_if_token2, - ACTIONS(3732), 1, - aux_sym_preproc_else_token1, - ACTIONS(3734), 1, - aux_sym_preproc_elif_token1, - STATE(1332), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1359), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1463), 1, - sym_enumerator, - ACTIONS(3736), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2012), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(2015), 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, - [56138] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(3732), 1, - aux_sym_preproc_else_token1, - ACTIONS(3734), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3738), 1, - aux_sym_preproc_if_token2, - STATE(1342), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1343), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1463), 1, - sym_enumerator, - ACTIONS(3736), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1835), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(1836), 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, - [56177] = 11, + ACTIONS(4321), 7, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + [64906] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(3732), 1, + ACTIONS(4327), 1, + aux_sym_preproc_if_token2, + ACTIONS(4329), 1, aux_sym_preproc_else_token1, - ACTIONS(3734), 1, + ACTIONS(4331), 1, aux_sym_preproc_elif_token1, - ACTIONS(3740), 1, - aux_sym_preproc_if_token2, - STATE(1340), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1341), 1, + STATE(1631), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1463), 1, + STATE(1642), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1733), 1, sym_enumerator, - ACTIONS(3736), 2, + ACTIONS(4333), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1926), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(1927), 3, + STATE(2170), 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, - [56216] = 11, + STATE(2278), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [64945] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(3732), 1, + ACTIONS(4329), 1, aux_sym_preproc_else_token1, - ACTIONS(3734), 1, + ACTIONS(4331), 1, aux_sym_preproc_elif_token1, - ACTIONS(3742), 1, + ACTIONS(4335), 1, aux_sym_preproc_if_token2, - STATE(1352), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1353), 1, + STATE(1644), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1463), 1, + STATE(1651), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1733), 1, sym_enumerator, - ACTIONS(3736), 2, + ACTIONS(4333), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1896), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(1897), 3, + STATE(2047), 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, - [56255] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - STATE(1285), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3746), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3744), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [56282] = 8, + STATE(2277), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [64984] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(4276), 1, sym_identifier, - ACTIONS(3685), 1, + ACTIONS(4280), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1650), 1, sym_gnu_asm_expression, - ACTIONS(35), 2, + ACTIONS(2183), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(93), 3, + ACTIONS(4282), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - STATE(1333), 3, + STATE(1633), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3683), 4, + ACTIONS(4278), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [56315] = 3, + [65017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 7, + ACTIONS(3405), 7, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, @@ -108445,7 +135133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(2935), 8, + ACTIONS(3398), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108454,10 +135142,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [56338] = 3, + [65040] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + STATE(1574), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4339), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4337), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65067] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + sym_identifier, + ACTIONS(4329), 1, + aux_sym_preproc_else_token1, + ACTIONS(4331), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4341), 1, + aux_sym_preproc_if_token2, + STATE(1639), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1652), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1733), 1, + sym_enumerator, + ACTIONS(4333), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2149), 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(2242), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [65106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 7, + ACTIONS(4343), 7, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, @@ -108465,7 +135203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(3750), 8, + ACTIONS(4345), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108474,47 +135212,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [56361] = 8, + [65129] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4325), 1, + sym_identifier, + ACTIONS(4329), 1, + aux_sym_preproc_else_token1, + ACTIONS(4331), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4347), 1, + aux_sym_preproc_if_token2, + STATE(1638), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1647), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1733), 1, + sym_enumerator, + ACTIONS(4333), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2164), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(2165), 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, + [65168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3430), 7, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3758), 1, + anon_sym_asm, + anon_sym___asm__, anon_sym___asm, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3752), 7, + sym_identifier, + ACTIONS(3423), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [56393] = 8, + anon_sym_COLON, + [65191] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(4355), 1, anon_sym___asm, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3760), 7, + ACTIONS(4349), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108522,23 +135284,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56425] = 8, + [65223] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3766), 1, + ACTIONS(4359), 1, anon_sym___asm, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3764), 7, + ACTIONS(4357), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108546,23 +135308,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56457] = 8, + [65255] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3770), 1, + ACTIONS(4363), 1, anon_sym___asm, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3768), 7, + ACTIONS(4361), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108570,129 +135332,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56489] = 12, + [65287] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3772), 1, - anon_sym_COMMA, - ACTIONS(3776), 1, - anon_sym___attribute, - ACTIONS(3778), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3780), 1, - anon_sym_COLON, - STATE(1403), 1, + ACTIONS(4367), 1, + anon_sym___asm, + STATE(1555), 1, sym_parameter_list, - STATE(1524), 1, - sym_bitfield_clause, - STATE(1526), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(3774), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1362), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3784), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3782), 10, + ACTIONS(4365), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56549] = 3, + [65319] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3788), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3786), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3573), 1, 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__, - [56570] = 11, + ACTIONS(3577), 1, + anon_sym_STAR, + ACTIONS(3988), 1, + sym_identifier, + STATE(1606), 1, + sym_function_declarator, + STATE(1717), 1, + sym__declarator, + STATE(1737), 1, + sym__declaration_declarator, + STATE(1811), 1, + sym__function_declaration_declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1663), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [65356] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1407), 1, - sym__declarator, - STATE(1462), 1, + STATE(1728), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1769), 1, + sym__declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56607] = 11, + [65393] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1455), 1, + STATE(1713), 1, + sym__declarator, + STATE(1732), 1, sym__declaration_declarator, - STATE(1481), 1, + STATE(1811), 1, + sym__function_declaration_declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1663), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [65430] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4371), 1, + aux_sym_preproc_if_token1, + ACTIONS(4375), 1, + anon_sym_RBRACE, + ACTIONS(4373), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2017), 2, + sym_preproc_call, + sym_enumerator, + STATE(2095), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1613), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [65463] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + ACTIONS(3988), 1, + sym_identifier, + STATE(1606), 1, + sym_function_declarator, + STATE(1705), 1, sym__declarator, - STATE(1512), 1, + STATE(1734), 1, + sym__declaration_declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56644] = 3, + [65500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3792), 3, + ACTIONS(4379), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3790), 10, + ACTIONS(4377), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108703,66 +135502,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56665] = 11, + [65521] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1475), 1, - sym__declaration_declarator, - STATE(1481), 1, + STATE(1724), 1, sym__declarator, - STATE(1512), 1, + STATE(1757), 1, + sym__declaration_declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56702] = 11, + [65558] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1411), 1, - sym__declarator, - STATE(1448), 1, + STATE(1732), 1, sym__declaration_declarator, - STATE(1512), 1, + STATE(1769), 1, + sym__declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56739] = 3, + [65595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 3, + ACTIONS(4383), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3794), 10, + ACTIONS(4381), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108773,61 +135572,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56760] = 11, + [65616] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1458), 1, + STATE(1737), 1, sym__declaration_declarator, - STATE(1481), 1, + STATE(1769), 1, sym__declarator, - STATE(1512), 1, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56797] = 6, + [65653] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 2, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(3798), 2, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4385), 1, anon_sym_COMMA, + ACTIONS(4389), 1, + anon_sym___attribute, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4393), 1, + anon_sym_COLON, + STATE(1667), 1, + sym_parameter_list, + STATE(1799), 1, + sym_bitfield_clause, + STATE(1804), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4387), 2, anon_sym_SEMI, - ACTIONS(3800), 2, anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(3803), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(3726), 4, + STATE(1643), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65692] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3573), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [56824] = 3, + ACTIONS(3577), 1, + anon_sym_STAR, + ACTIONS(3988), 1, + sym_identifier, + STATE(1606), 1, + sym_function_declarator, + STATE(1757), 1, + sym__declaration_declarator, + STATE(1769), 1, + sym__declarator, + STATE(1811), 1, + sym__function_declaration_declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1663), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [65729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 3, + ACTIONS(4397), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3805), 10, + ACTIONS(4395), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108838,14 +135669,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56845] = 3, + [65750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 3, + ACTIONS(4401), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3809), 10, + ACTIONS(4399), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108856,142 +135687,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56866] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 1, - sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1428), 1, - sym__declarator, - STATE(1440), 1, - sym__declaration_declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [56903] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3813), 1, - sym_identifier, - ACTIONS(3815), 1, - aux_sym_preproc_if_token1, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3817), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1696), 2, - sym_preproc_call, - sym_enumerator, - STATE(1862), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1334), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [56936] = 11, + [65771] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1448), 1, + STATE(1734), 1, sym__declaration_declarator, - STATE(1481), 1, + STATE(1769), 1, sym__declarator, - STATE(1512), 1, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56973] = 11, + [65808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(4405), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4403), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 1, - sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1425), 1, - sym__declarator, - STATE(1460), 1, - sym__declaration_declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [57010] = 11, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65829] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(1311), 1, + STATE(1606), 1, sym_function_declarator, - STATE(1460), 1, - sym__declaration_declarator, - STATE(1481), 1, + STATE(1769), 1, sym__declarator, - STATE(1512), 1, + STATE(1770), 1, + sym__declaration_declarator, + STATE(1811), 1, sym__function_declaration_declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1375), 4, + STATE(1663), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57047] = 3, + [65866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 3, + ACTIONS(4409), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3821), 10, + ACTIONS(4407), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109002,1072 +135775,1044 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [57068] = 11, + [65887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 1, + ACTIONS(4321), 2, + anon_sym_LBRACK, sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1440), 1, - sym__declaration_declarator, - STATE(1481), 1, - sym__declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [57105] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3105), 1, + ACTIONS(4411), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4413), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4416), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(4323), 4, anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - ACTIONS(3422), 1, - sym_identifier, - STATE(1311), 1, - sym_function_declarator, - STATE(1462), 1, - sym__declaration_declarator, - STATE(1481), 1, - sym__declarator, - STATE(1512), 1, - sym__function_declaration_declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1375), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [57142] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [65914] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3813), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(3815), 1, + ACTIONS(4371), 1, aux_sym_preproc_if_token1, - ACTIONS(3825), 1, + ACTIONS(4418), 1, anon_sym_RBRACE, - ACTIONS(3817), 2, + ACTIONS(4373), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1768), 2, + STATE(2025), 2, sym_preproc_call, sym_enumerator, - STATE(2004), 2, + STATE(2127), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1317), 3, + STATE(1632), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [57175] = 8, + [65947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4422), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4420), 10, + 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__, + [65968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - ACTIONS(3829), 1, + ACTIONS(4426), 1, anon_sym___attribute, - STATE(1403), 1, + STATE(1667), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1643), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3827), 5, + ACTIONS(4424), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [57205] = 8, + [65998] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - ACTIONS(3833), 1, + ACTIONS(4393), 1, + anon_sym_COLON, + ACTIONS(4430), 1, + anon_sym___attribute, + STATE(1667), 1, + sym_parameter_list, + STATE(1817), 1, + sym_bitfield_clause, + STATE(1643), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4428), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [66032] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4434), 1, anon_sym___attribute, - STATE(1403), 1, + STATE(1667), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1643), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3831), 5, + ACTIONS(4432), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [57235] = 8, + [66062] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - ACTIONS(3837), 1, + ACTIONS(4438), 1, anon_sym___attribute, - STATE(1403), 1, + STATE(1667), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1643), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3835), 5, + ACTIONS(4436), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [57265] = 10, + [66092] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - ACTIONS(3780), 1, - anon_sym_COLON, - ACTIONS(3841), 1, + ACTIONS(4442), 1, anon_sym___attribute, - STATE(1403), 1, + STATE(1667), 1, sym_parameter_list, - STATE(1552), 1, - sym_bitfield_clause, - STATE(1362), 2, + STATE(1643), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3839), 3, + ACTIONS(4440), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [57299] = 10, + anon_sym_COLON, + [66122] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(1296), 1, + STATE(1583), 1, sym_parameter_list, - ACTIONS(3843), 2, + ACTIONS(4444), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(1491), 2, + STATE(1772), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57333] = 8, + [66156] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4327), 1, + aux_sym_preproc_if_token2, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4446), 1, + aux_sym_preproc_else_token1, + ACTIONS(4448), 1, + aux_sym_preproc_elif_token1, + STATE(1642), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2240), 1, + sym_enumerator, + ACTIONS(4450), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2278), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [66187] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, - anon_sym_LBRACK, - ACTIONS(3847), 1, + ACTIONS(4454), 1, anon_sym___attribute, - STATE(1403), 1, + ACTIONS(4456), 1, + anon_sym_LBRACK, + STATE(1697), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1662), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3845), 5, + ACTIONS(4452), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [57363] = 6, + [66216] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, sym_identifier, - STATE(673), 1, - sym_string_literal, - ACTIONS(3851), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1566), 2, - sym__string, - sym_concatenated_string, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [57388] = 9, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3577), 1, + anon_sym_STAR, + STATE(1730), 1, + sym__declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [66245] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, - sym_identifier, - ACTIONS(3853), 1, + ACTIONS(4341), 1, aux_sym_preproc_if_token2, - ACTIONS(3855), 1, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4446), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(4448), 1, aux_sym_preproc_elif_token1, - STATE(1415), 1, + STATE(1639), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(2240), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(4450), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1775), 3, + STATE(2242), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57419] = 5, + [66276] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3703), 3, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(1270), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3701), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3573), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [57442] = 8, + ACTIONS(3577), 1, + anon_sym_STAR, + STATE(1719), 1, + sym__declarator, + STATE(2061), 1, + sym_ms_based_modifier, + STATE(1606), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [66305] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3861), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(3864), 1, - aux_sym_preproc_if_token1, - ACTIONS(3870), 1, - sym_preproc_directive, - ACTIONS(3873), 1, - anon_sym_RBRACE, - ACTIONS(3867), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1905), 2, - sym_preproc_call, + ACTIONS(4446), 1, + aux_sym_preproc_else_token1, + ACTIONS(4448), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4458), 1, + aux_sym_preproc_if_token2, + STATE(1651), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2240), 1, sym_enumerator, - STATE(1334), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [57471] = 8, + ACTIONS(4450), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2277), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [66336] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3877), 1, - anon_sym___attribute, - ACTIONS(3879), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - STATE(1410), 1, + ACTIONS(4462), 1, + anon_sym___attribute, + STATE(1697), 1, sym_parameter_list, - STATE(1366), 2, + STATE(1662), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3875), 4, + ACTIONS(4460), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [57500] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(3881), 1, - aux_sym_preproc_if_token2, - ACTIONS(3883), 1, - aux_sym_preproc_else_token1, - ACTIONS(3885), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3887), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1359), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2015), 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, - [57529] = 8, + [66365] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(3891), 1, + ACTIONS(4464), 1, + anon_sym_COMMA, + ACTIONS(4468), 1, anon_sym___attribute, - STATE(1410), 1, + STATE(1697), 1, sym_parameter_list, - STATE(1366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3889), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1786), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4466), 2, anon_sym_SEMI, anon_sym___attribute__, - [57558] = 8, + STATE(1662), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66398] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(1443), 1, + STATE(1702), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [57587] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3681), 1, - sym_identifier, - ACTIONS(3709), 3, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(1270), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3707), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [57610] = 9, + [66427] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(3855), 1, + ACTIONS(4470), 1, + aux_sym_preproc_if_token2, + ACTIONS(4472), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(4474), 1, aux_sym_preproc_elif_token1, - ACTIONS(3893), 1, - aux_sym_preproc_if_token2, - STATE(1415), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, - sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(4476), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1870), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [57641] = 8, + STATE(1652), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2149), 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, + [66456] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(3883), 1, + ACTIONS(4472), 1, aux_sym_preproc_else_token1, - ACTIONS(3885), 1, + ACTIONS(4474), 1, aux_sym_preproc_elif_token1, - ACTIONS(3895), 1, + ACTIONS(4478), 1, aux_sym_preproc_if_token2, - ACTIONS(3887), 2, + ACTIONS(4476), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1427), 2, + STATE(1701), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1954), 3, + STATE(2219), 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, - [57670] = 9, + [66485] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(4480), 1, sym_identifier, - ACTIONS(3855), 1, + ACTIONS(4483), 1, + aux_sym_preproc_if_token1, + ACTIONS(4489), 1, + sym_preproc_directive, + ACTIONS(4492), 1, + anon_sym_RBRACE, + ACTIONS(4486), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2072), 2, + sym_preproc_call, + sym_enumerator, + STATE(1632), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [66514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4276), 1, + sym_identifier, + ACTIONS(4304), 3, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(1563), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(4302), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [66537] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4446), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(4448), 1, aux_sym_preproc_elif_token1, - ACTIONS(3897), 1, + ACTIONS(4494), 1, aux_sym_preproc_if_token2, - STATE(1415), 1, + STATE(1638), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(2240), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(4450), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1776), 3, + STATE(2164), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57701] = 8, + [66568] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(3883), 1, + ACTIONS(4472), 1, aux_sym_preproc_else_token1, - ACTIONS(3885), 1, + ACTIONS(4474), 1, aux_sym_preproc_elif_token1, - ACTIONS(3899), 1, + ACTIONS(4496), 1, aux_sym_preproc_if_token2, - ACTIONS(3887), 2, + ACTIONS(4476), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1427), 2, + STATE(1631), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1986), 3, + STATE(2170), 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, - [57730] = 9, + [66597] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 1, - aux_sym_preproc_if_token2, - ACTIONS(3813), 1, + ACTIONS(2346), 1, + anon_sym___based, + ACTIONS(3579), 1, sym_identifier, - ACTIONS(3855), 1, - aux_sym_preproc_else_token1, - ACTIONS(3857), 1, - aux_sym_preproc_elif_token1, - STATE(1342), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, - sym_enumerator, - ACTIONS(3859), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1835), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [57761] = 8, + ACTIONS(3581), 1, + anon_sym_LPAREN2, + ACTIONS(3583), 1, + anon_sym_STAR, + STATE(1736), 1, + sym__field_declarator, + STATE(2198), 1, + sym_ms_based_modifier, + STATE(1692), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [66626] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(3903), 1, + ACTIONS(4500), 1, anon_sym___attribute, - STATE(1410), 1, + STATE(1697), 1, sym_parameter_list, - STATE(1366), 2, + STATE(1662), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3901), 4, + ACTIONS(4498), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [57790] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(3883), 1, - aux_sym_preproc_else_token1, - ACTIONS(3885), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3905), 1, - aux_sym_preproc_if_token2, - ACTIONS(3887), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1343), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1836), 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, - [57819] = 9, + [66655] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(3855), 1, + ACTIONS(4446), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(4448), 1, aux_sym_preproc_elif_token1, - ACTIONS(3907), 1, + ACTIONS(4502), 1, aux_sym_preproc_if_token2, - STATE(1352), 1, + STATE(1699), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(2240), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(4450), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1896), 3, + STATE(2239), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57850] = 9, + [66686] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(3855), 1, + ACTIONS(4446), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(4448), 1, aux_sym_preproc_elif_token1, - ACTIONS(3909), 1, + ACTIONS(4504), 1, aux_sym_preproc_if_token2, - STATE(1340), 1, + STATE(1699), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(2240), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(4450), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1926), 3, + STATE(2189), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57881] = 8, + [66717] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(1406), 1, + STATE(1698), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [57910] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3879), 1, - anon_sym_LBRACK, - ACTIONS(3911), 1, - anon_sym_COMMA, - ACTIONS(3915), 1, - anon_sym___attribute, - STATE(1410), 1, - sym_parameter_list, - STATE(1518), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(3913), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [57943] = 6, + [66746] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(4276), 1, sym_identifier, - ACTIONS(3703), 1, - anon_sym_LBRACK, - ACTIONS(35), 2, + ACTIONS(4288), 3, anon_sym___attribute__, anon_sym___attribute, - STATE(1339), 3, + anon_sym_LBRACK, + STATE(1563), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3701), 4, + ACTIONS(4286), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [57968] = 9, + [66769] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(3855), 1, + ACTIONS(4446), 1, aux_sym_preproc_else_token1, - ACTIONS(3857), 1, + ACTIONS(4448), 1, aux_sym_preproc_elif_token1, - ACTIONS(3917), 1, + ACTIONS(4506), 1, aux_sym_preproc_if_token2, - STATE(1415), 1, + STATE(1699), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(2240), 1, sym_enumerator, - ACTIONS(3859), 2, + ACTIONS(4450), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1899), 3, + STATE(2213), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57999] = 8, + [66800] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4510), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(1574), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4508), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [66823] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(3883), 1, + ACTIONS(4472), 1, aux_sym_preproc_else_token1, - ACTIONS(3885), 1, + ACTIONS(4474), 1, aux_sym_preproc_elif_token1, - ACTIONS(3919), 1, + ACTIONS(4512), 1, aux_sym_preproc_if_token2, - ACTIONS(3887), 2, + ACTIONS(4476), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1427), 2, + STATE(1701), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1934), 3, + STATE(2251), 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, - [58028] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - STATE(1422), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [58057] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(2801), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, - anon_sym_STAR, - STATE(1433), 1, - sym__declarator, - STATE(1967), 1, - sym_ms_based_modifier, - STATE(1311), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [58086] = 8, + [66852] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(3579), 1, sym_identifier, - ACTIONS(3113), 1, + ACTIONS(3581), 1, anon_sym_LPAREN2, - ACTIONS(3115), 1, + ACTIONS(3583), 1, anon_sym_STAR, - STATE(1439), 1, + STATE(1616), 1, sym__field_declarator, - STATE(1953), 1, + STATE(2198), 1, sym_ms_based_modifier, - STATE(1395), 5, + STATE(1692), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [58115] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3879), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym___attribute, - STATE(1410), 1, - sym_parameter_list, - STATE(1366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3921), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [58144] = 8, + [66881] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, + ACTIONS(2346), 1, anon_sym___based, - ACTIONS(2801), 1, + ACTIONS(3267), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3577), 1, anon_sym_STAR, - STATE(1434), 1, + STATE(1716), 1, sym__declarator, - STATE(1967), 1, + STATE(2061), 1, sym_ms_based_modifier, - STATE(1311), 5, + STATE(1606), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [58173] = 8, + [66910] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(3883), 1, + ACTIONS(4472), 1, aux_sym_preproc_else_token1, - ACTIONS(3885), 1, + ACTIONS(4474), 1, aux_sym_preproc_elif_token1, - ACTIONS(3925), 1, + ACTIONS(4514), 1, aux_sym_preproc_if_token2, - ACTIONS(3887), 2, + ACTIONS(4476), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1427), 2, + STATE(1701), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1903), 3, + STATE(2038), 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, - [58202] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - aux_sym_preproc_if_token2, - ACTIONS(3813), 1, - sym_identifier, - ACTIONS(3855), 1, - aux_sym_preproc_else_token1, - ACTIONS(3857), 1, - aux_sym_preproc_elif_token1, - STATE(1332), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, - sym_enumerator, - ACTIONS(3859), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2012), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [58233] = 8, + [66939] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 1, - anon_sym___based, - ACTIONS(3111), 1, + ACTIONS(4516), 1, sym_identifier, - ACTIONS(3113), 1, - anon_sym_LPAREN2, - ACTIONS(3115), 1, - anon_sym_STAR, - STATE(1328), 1, - sym__field_declarator, - STATE(1953), 1, - sym_ms_based_modifier, - STATE(1395), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [58262] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3929), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(1285), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3927), 6, - anon_sym_COMMA, + STATE(896), 1, + sym_string_literal, + ACTIONS(4518), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - [58285] = 8, + STATE(1824), 2, + sym__string, + sym_concatenated_string, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66964] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(3933), 1, + ACTIONS(4522), 1, anon_sym___attribute, - STATE(1410), 1, + STATE(1697), 1, sym_parameter_list, - STATE(1366), 2, + STATE(1662), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3931), 3, + ACTIONS(4520), 4, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [58313] = 6, + [66993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 1, + ACTIONS(4276), 1, + sym_identifier, + ACTIONS(4304), 1, anon_sym_LBRACK, - STATE(1532), 1, - sym_gnu_asm_output_operand, - STATE(1963), 1, - sym_string_literal, - ACTIONS(3935), 2, + ACTIONS(2183), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1641), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(4302), 4, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58337] = 10, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [67018] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4446), 1, + aux_sym_preproc_else_token1, + ACTIONS(4448), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4524), 1, + aux_sym_preproc_if_token2, + STATE(1699), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2240), 1, + sym_enumerator, + ACTIONS(4450), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2233), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [67049] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + sym_identifier, + ACTIONS(4472), 1, + aux_sym_preproc_else_token1, + ACTIONS(4474), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4526), 1, + aux_sym_preproc_if_token2, + ACTIONS(4476), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1701), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2208), 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, + [67078] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(4528), 1, anon_sym_LPAREN2, - ACTIONS(3941), 1, + ACTIONS(4530), 1, anon_sym_EQ, - STATE(320), 1, + STATE(167), 1, sym_compound_statement, - STATE(945), 1, + STATE(1175), 1, sym__old_style_parameter_list, - STATE(1268), 1, + STATE(1558), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58369] = 5, + [67110] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3945), 2, - anon_sym___attribute, + ACTIONS(4534), 1, anon_sym_LBRACK, - STATE(1285), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3943), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [58391] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3949), 1, - anon_sym___attribute__, - ACTIONS(3952), 1, - anon_sym___attribute, - ACTIONS(3955), 1, - anon_sym___asm, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3947), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [58415] = 8, + STATE(1837), 1, + sym_gnu_asm_input_operand, + STATE(2126), 1, + sym_string_literal, + ACTIONS(4532), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [67134] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3770), 1, + ACTIONS(4359), 1, anon_sym___attribute, - STATE(1296), 1, + STATE(1583), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3768), 3, + ACTIONS(4357), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [58443] = 8, + [67162] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3758), 1, + ACTIONS(4363), 1, anon_sym___attribute, - STATE(1296), 1, + STATE(1583), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3752), 3, + ACTIONS(4361), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [58471] = 8, + [67190] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3766), 1, + ACTIONS(4367), 1, anon_sym___attribute, - STATE(1296), 1, + STATE(1583), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3764), 3, + ACTIONS(4365), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [58499] = 8, + [67218] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4538), 1, + anon_sym___attribute__, + ACTIONS(4541), 1, + anon_sym___attribute, + ACTIONS(4544), 1, + anon_sym___asm, + STATE(1658), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4536), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [67242] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, + ACTIONS(4548), 1, anon_sym___attribute, - STATE(1296), 1, + STATE(1697), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1662), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3760), 3, + ACTIONS(4546), 3, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, - [58527] = 6, + [67270] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(440), 1, + anon_sym_LBRACE, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(1551), 1, - sym_gnu_asm_input_operand, - STATE(1975), 1, + ACTIONS(4528), 1, + anon_sym_LPAREN2, + ACTIONS(4530), 1, + anon_sym_EQ, + STATE(316), 1, + sym_compound_statement, + STATE(1175), 1, + sym__old_style_parameter_list, + STATE(1558), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67302] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 1, + anon_sym_LBRACK, + STATE(1832), 1, + sym_gnu_asm_output_operand, + STATE(2274), 1, sym_string_literal, - ACTIONS(3957), 2, + ACTIONS(4550), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(99), 5, @@ -110076,185 +136821,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58551] = 10, + [67326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, - anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(4556), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3939), 1, - anon_sym_LPAREN2, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(292), 1, - sym_compound_statement, - STATE(945), 1, - sym__old_style_parameter_list, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, + STATE(1574), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58583] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(3756), 1, - anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(4554), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(263), 1, - sym_compound_statement, - STATE(945), 1, - sym__old_style_parameter_list, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [58615] = 5, + anon_sym_SEMI, + anon_sym___attribute__, + [67348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(4397), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4560), 1, anon_sym___asm, - ACTIONS(3794), 4, + ACTIONS(4395), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3961), 4, + ACTIONS(4558), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [58637] = 10, + [67370] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(4528), 1, anon_sym_LPAREN2, - ACTIONS(3941), 1, + ACTIONS(4530), 1, anon_sym_EQ, - STATE(146), 1, + STATE(416), 1, sym_compound_statement, - STATE(945), 1, + STATE(1175), 1, sym__old_style_parameter_list, - STATE(1268), 1, + STATE(1558), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58669] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3849), 1, - sym_identifier, - STATE(673), 1, - sym_string_literal, - STATE(1608), 2, - sym__string, - sym_concatenated_string, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58690] = 9, + [67402] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(263), 1, - sym_compound_statement, - STATE(1268), 1, + ACTIONS(4355), 1, + anon_sym___attribute, + STATE(1583), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58719] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3965), 1, - sym_identifier, - ACTIONS(3969), 1, - sym_system_lib_string, - STATE(1861), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3967), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58740] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(3973), 1, - anon_sym___asm, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3971), 4, + ACTIONS(4349), 3, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [58763] = 9, + anon_sym_RPAREN, + anon_sym___attribute__, + [67430] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, + ACTIONS(388), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(4528), 1, anon_sym_LPAREN2, - STATE(276), 1, + ACTIONS(4530), 1, + anon_sym_EQ, + STATE(366), 1, sym_compound_statement, - STATE(945), 1, + STATE(1175), 1, sym__old_style_parameter_list, - STATE(1263), 1, + STATE(1558), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58792] = 3, + [67462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3977), 2, + ACTIONS(4564), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3975), 7, + ACTIONS(4562), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110262,27 +136933,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [58809] = 3, + [67479] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 2, + ACTIONS(35), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(3979), 7, + ACTIONS(4103), 1, + anon_sym___attribute__, + ACTIONS(4568), 1, + anon_sym___asm, + STATE(1658), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4566), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [58826] = 3, + anon_sym_asm, + anon_sym___asm__, + [67502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 2, + ACTIONS(4572), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3983), 7, + ACTIONS(4570), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110290,30 +136964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [58843] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3849), 1, - sym_identifier, - STATE(673), 1, - sym_string_literal, - STATE(1605), 2, - sym__string, - sym_concatenated_string, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58864] = 5, + [67519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, + ACTIONS(4516), 1, sym_identifier, - STATE(673), 1, + STATE(896), 1, sym_string_literal, - STATE(1598), 2, + STATE(1905), 2, sym__string, sym_concatenated_string, ACTIONS(99), 5, @@ -110322,150 +136980,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58885] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3987), 1, - sym_identifier, - ACTIONS(3989), 1, - sym_system_lib_string, - STATE(1989), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3967), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58906] = 3, + [67540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 2, + ACTIONS(35), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(3991), 7, + ACTIONS(4103), 1, + anon_sym___attribute__, + ACTIONS(4306), 1, + anon_sym___asm, + STATE(1658), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4300), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [58923] = 8, + anon_sym_asm, + anon_sym___asm__, + [67563] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(1465), 1, + ACTIONS(4528), 1, + anon_sym_LPAREN2, + STATE(177), 1, + sym_compound_statement, + STATE(1175), 1, + sym__old_style_parameter_list, + STATE(1555), 1, sym_parameter_list, - ACTIONS(3843), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1492), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58950] = 5, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67592] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, - sym_identifier, - ACTIONS(3999), 1, - sym_system_lib_string, - STATE(1879), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3967), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58971] = 7, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4353), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + anon_sym_EQ, + STATE(167), 1, + sym_compound_statement, + STATE(1558), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67621] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 1, + ACTIONS(2422), 1, anon_sym_LPAREN2, - ACTIONS(1950), 1, + ACTIONS(2424), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(3281), 1, anon_sym_LBRACK, - STATE(1442), 1, + STATE(1742), 1, sym_parameter_list, - STATE(1547), 1, + STATE(1849), 1, sym__abstract_declarator, - STATE(1467), 4, + STATE(1759), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [58996] = 3, + [67646] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4003), 2, - anon_sym___attribute, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(4001), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4528), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [59013] = 9, + STATE(392), 1, + sym_compound_statement, + STATE(1175), 1, + sym__old_style_parameter_list, + STATE(1555), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67675] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(440), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(4528), 1, anon_sym_LPAREN2, - STATE(344), 1, + STATE(349), 1, sym_compound_statement, - STATE(945), 1, + STATE(1175), 1, sym__old_style_parameter_list, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59042] = 9, + [67704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(440), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, + ACTIONS(4530), 1, anon_sym_EQ, - STATE(320), 1, + STATE(316), 1, sym_compound_statement, - STATE(1268), 1, + STATE(1558), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67733] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4353), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + anon_sym_EQ, + STATE(366), 1, + sym_compound_statement, + STATE(1558), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59071] = 3, + [67762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4007), 2, + ACTIONS(4576), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4005), 7, + ACTIONS(4574), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110473,30 +137149,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59088] = 6, + [67779] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(3705), 1, - anon_sym___asm, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3699), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [59111] = 3, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4353), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + anon_sym_EQ, + STATE(416), 1, + sym_compound_statement, + STATE(1558), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 2, + ACTIONS(4580), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4009), 7, + ACTIONS(4578), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110504,29 +137183,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59128] = 5, + [67825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 1, + ACTIONS(4582), 1, sym_identifier, - ACTIONS(4015), 1, + ACTIONS(4586), 1, sym_system_lib_string, - STATE(1817), 2, + STATE(2143), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3967), 5, + ACTIONS(4584), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [59149] = 3, + [67846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 2, + ACTIONS(4590), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4017), 7, + ACTIONS(4588), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110534,73 +137213,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59166] = 9, + [67863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(4594), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(4592), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(3756), 1, + anon_sym_COLON, + [67880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(4596), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(130), 1, - sym_compound_statement, - STATE(945), 1, - sym__old_style_parameter_list, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59195] = 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [67897] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 1, + sym_identifier, + STATE(896), 1, + sym_string_literal, + STATE(1960), 2, + sym__string, + sym_concatenated_string, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [67918] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, + ACTIONS(388), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(3939), 1, + ACTIONS(4528), 1, anon_sym_LPAREN2, - STATE(300), 1, + STATE(324), 1, sym_compound_statement, - STATE(945), 1, + STATE(1175), 1, sym__old_style_parameter_list, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59224] = 9, + [67947] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(4103), 1, + anon_sym___attribute__, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4600), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(292), 1, - sym_compound_statement, - STATE(1268), 1, + STATE(1740), 1, sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59253] = 3, + ACTIONS(4444), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1782), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [67974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 2, + ACTIONS(4604), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4021), 7, + ACTIONS(4602), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110608,439 +137310,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59270] = 9, + [67991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, - anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(146), 1, - sym_compound_statement, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59299] = 3, + ACTIONS(4606), 1, + sym_identifier, + ACTIONS(4608), 1, + sym_system_lib_string, + STATE(2180), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4584), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [68012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 1, + sym_identifier, + ACTIONS(4612), 1, + sym_system_lib_string, + STATE(2140), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4584), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [68033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 2, + ACTIONS(4616), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4025), 6, + ACTIONS(4614), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59315] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, - anon_sym_LBRACK, - STATE(283), 1, - sym_compound_statement, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59341] = 8, + anon_sym_COLON, + [68050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, - anon_sym_LBRACK, - STATE(342), 1, - sym_compound_statement, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59367] = 8, + ACTIONS(4618), 1, + sym_identifier, + ACTIONS(4620), 1, + sym_system_lib_string, + STATE(2206), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4584), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [68071] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, - anon_sym_LBRACK, - STATE(276), 1, - sym_compound_statement, - STATE(1263), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59393] = 3, + ACTIONS(4516), 1, + sym_identifier, + STATE(896), 1, + sym_string_literal, + STATE(1925), 2, + sym__string, + sym_concatenated_string, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [68092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 2, + ACTIONS(4624), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4029), 6, + ACTIONS(4622), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59409] = 3, + [68108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4600), 1, + anon_sym_LBRACK, + ACTIONS(4628), 1, + anon_sym___attribute, + STATE(1740), 1, + sym_parameter_list, + ACTIONS(4626), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_COLON, + [68130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(4632), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4033), 6, + ACTIONS(4630), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59425] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, - anon_sym_LBRACK, - STATE(120), 1, - sym_compound_statement, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59451] = 8, + [68146] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(344), 1, + STATE(185), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59477] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(4037), 1, - sym_identifier, - STATE(735), 1, - sym_field_declaration_list, - STATE(1511), 1, - sym_attribute_specifier, - STATE(1611), 1, - sym_ms_declspec_modifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - [59503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4041), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4039), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [59519] = 6, + [68172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4043), 1, + ACTIONS(4634), 1, sym_identifier, - ACTIONS(4048), 1, + ACTIONS(4639), 1, aux_sym_preproc_elif_token1, - STATE(1415), 1, + STATE(1699), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, + STATE(2240), 1, sym_enumerator, - ACTIONS(4046), 4, + ACTIONS(4637), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [59541] = 8, + [68194] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(130), 1, + STATE(177), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59567] = 4, + [68220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, + ACTIONS(4641), 1, + sym_identifier, + ACTIONS(4646), 1, aux_sym_preproc_elif_token1, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4050), 6, - anon_sym_COMMA, + STATE(1701), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4644), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - sym_identifier, - [59585] = 6, + [68240] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym___attribute, - STATE(1465), 1, - sym_parameter_list, - ACTIONS(4056), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_COLON, - [59607] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3937), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(1677), 1, - sym_gnu_asm_output_operand, - STATE(1963), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [59627] = 3, + STATE(427), 1, + sym_compound_statement, + STATE(1555), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 2, + ACTIONS(4650), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4060), 6, + ACTIONS(4648), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59643] = 3, + [68282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 2, + ACTIONS(4654), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4064), 6, + ACTIONS(4652), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59659] = 8, + [68298] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(323), 1, + STATE(175), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1558), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59685] = 3, + [68324] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4068), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4351), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [59701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4074), 2, - anon_sym___attribute, + ACTIONS(4600), 1, anon_sym_LBRACK, - ACTIONS(4072), 6, + ACTIONS(4658), 1, + anon_sym___attribute, + STATE(1740), 1, + sym_parameter_list, + ACTIONS(4656), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [59717] = 8, + anon_sym_COLON, + [68346] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(298), 1, + STATE(392), 1, sym_compound_statement, - STATE(1268), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59743] = 3, + [68372] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 1, + anon_sym_LBRACK, + STATE(1866), 1, + sym_gnu_asm_output_operand, + STATE(2274), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [68392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 2, + ACTIONS(4662), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4076), 6, + ACTIONS(4660), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59759] = 5, + [68408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4085), 1, - aux_sym_preproc_elif_token1, - STATE(1427), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4083), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [59779] = 8, + ACTIONS(4666), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(4664), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [68424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4670), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(274), 1, - sym_compound_statement, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59805] = 6, + ACTIONS(4668), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [68440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(4600), 1, anon_sym_LBRACK, - ACTIONS(4089), 1, + ACTIONS(4674), 1, anon_sym___attribute, - STATE(1465), 1, + STATE(1740), 1, sym_parameter_list, - ACTIONS(4087), 4, + ACTIONS(4672), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_COLON, - [59827] = 6, + [68462] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(440), 1, + anon_sym_LBRACE, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(4093), 1, - anon_sym___attribute, - STATE(1465), 1, + STATE(347), 1, + sym_compound_statement, + STATE(1558), 1, sym_parameter_list, - ACTIONS(4091), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_COLON, - [59849] = 5, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 1, + ACTIONS(4534), 1, anon_sym_LBRACK, - STATE(1599), 1, + STATE(1931), 1, sym_gnu_asm_input_operand, - STATE(1975), 1, + STATE(2126), 1, sym_string_literal, ACTIONS(99), 5, anon_sym_L_DQUOTE, @@ -111048,6122 +137696,6029 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [59869] = 3, + [68508] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4095), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - [59885] = 8, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4353), 1, + anon_sym_LBRACK, + STATE(324), 1, + sym_compound_statement, + STATE(1555), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68534] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, + ACTIONS(388), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(123), 1, + STATE(342), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59911] = 8, + [68560] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(306), 1, + STATE(379), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1558), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59937] = 8, + [68586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4680), 1, + anon_sym_EQ, + ACTIONS(4676), 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, + [68604] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(506), 1, + ACTIONS(440), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(300), 1, + STATE(312), 1, sym_compound_statement, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59963] = 3, + [68630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 1, + ACTIONS(4684), 2, anon_sym___attribute, - ACTIONS(4099), 6, + anon_sym_LBRACK, + ACTIONS(4682), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [68646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 2, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_COLON, - [59978] = 3, + ACTIONS(4686), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [68662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 1, + ACTIONS(4692), 2, anon_sym___attribute, - ACTIONS(4103), 6, + anon_sym_LBRACK, + ACTIONS(4690), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [68678] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(440), 1, + anon_sym_LBRACE, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4353), 1, anon_sym_LBRACK, - anon_sym_COLON, - [59993] = 7, + STATE(349), 1, + sym_compound_statement, + STATE(1555), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68704] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4353), 1, + anon_sym_LBRACK, + STATE(318), 1, + sym_compound_statement, + STATE(1558), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68730] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(4694), 1, anon_sym_RPAREN, - STATE(1410), 1, + STATE(1697), 1, sym_parameter_list, - STATE(1366), 2, + STATE(1662), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60016] = 7, + [68753] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(4109), 1, + ACTIONS(4696), 1, anon_sym_RPAREN, - STATE(1403), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60039] = 7, + [68776] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4113), 1, + ACTIONS(4700), 1, anon_sym_SEMI, - STATE(1571), 1, + STATE(1876), 1, sym_gnu_asm_expression, - STATE(1613), 1, + STATE(1879), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4702), 2, anon_sym_asm, anon_sym___asm__, - [60062] = 4, + [68799] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 1, - anon_sym_LPAREN2, - STATE(1450), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4119), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [60079] = 3, + ACTIONS(93), 1, + anon_sym___asm, + ACTIONS(4698), 1, + anon_sym_COMMA, + ACTIONS(4704), 1, + anon_sym_SEMI, + STATE(1880), 1, + sym_gnu_asm_expression, + STATE(1881), 1, + aux_sym_declaration_repeat1, + ACTIONS(4702), 2, + anon_sym_asm, + anon_sym___asm__, + [68822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 1, + ACTIONS(4708), 1, anon_sym___attribute, - ACTIONS(4121), 6, + ACTIONS(4706), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60094] = 7, + [68837] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(4125), 1, + ACTIONS(4710), 1, anon_sym_RPAREN, - STATE(1263), 1, + STATE(1555), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60117] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACK, - ACTIONS(4130), 1, - anon_sym_EQ, - ACTIONS(4132), 1, - anon_sym_DOT, - STATE(1444), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [60136] = 7, + [68860] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4135), 1, + ACTIONS(4712), 1, anon_sym_SEMI, - STATE(1592), 1, + STATE(1894), 1, sym_gnu_asm_expression, - STATE(1593), 1, + STATE(1895), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4702), 2, anon_sym_asm, anon_sym___asm__, - [60159] = 7, + [68883] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4137), 1, + ACTIONS(4714), 1, anon_sym_SEMI, - STATE(1659), 1, + STATE(1897), 1, sym_gnu_asm_expression, - STATE(1660), 1, + STATE(1898), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4702), 2, anon_sym_asm, anon_sym___asm__, - [60182] = 3, + [68906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, - anon_sym___attribute, - ACTIONS(4139), 6, + ACTIONS(4718), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60197] = 7, + ACTIONS(4720), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4716), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [68923] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4143), 1, + ACTIONS(4722), 1, anon_sym_SEMI, - STATE(1600), 1, + STATE(1919), 1, sym_gnu_asm_expression, - STATE(1601), 1, + STATE(1921), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4702), 2, anon_sym_asm, anon_sym___asm__, - [60220] = 3, + [68946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4726), 1, anon_sym___attribute, - ACTIONS(4145), 6, + ACTIONS(4724), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60235] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(1450), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4151), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [60252] = 3, + [68961] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym___attribute, - ACTIONS(4154), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4351), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(4391), 1, anon_sym_LBRACK, - anon_sym_COLON, - [60267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4160), 1, - anon_sym___attribute, - ACTIONS(4158), 6, - anon_sym_COMMA, + ACTIONS(4728), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60282] = 7, + STATE(1667), 1, + sym_parameter_list, + STATE(1643), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68984] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4162), 1, + ACTIONS(4730), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1883), 1, sym_gnu_asm_expression, - STATE(1624), 1, + STATE(1911), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4702), 2, anon_sym_asm, anon_sym___asm__, - [60305] = 7, + [69007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - ACTIONS(4164), 1, + ACTIONS(4732), 1, anon_sym_RPAREN, - STATE(1263), 1, + STATE(1667), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1643), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60328] = 7, + [69030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4736), 1, + anon_sym___attribute, + ACTIONS(4734), 6, anon_sym_COMMA, - ACTIONS(4166), 1, - anon_sym_SEMI, - STATE(1629), 1, - sym_gnu_asm_expression, - STATE(1630), 1, - aux_sym_declaration_repeat1, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - [60351] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2002), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT, - STATE(1444), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [60370] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4172), 1, - anon_sym_SEMI, - STATE(1637), 1, - sym_gnu_asm_expression, - STATE(1638), 1, - aux_sym_declaration_repeat1, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - [60393] = 7, + anon_sym_COLON, + [69045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4740), 1, + anon_sym___attribute, + ACTIONS(4738), 6, anon_sym_COMMA, - ACTIONS(4174), 1, - anon_sym_SEMI, - STATE(1640), 1, - sym_gnu_asm_expression, - STATE(1641), 1, - aux_sym_declaration_repeat1, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - [60416] = 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [69060] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4176), 1, + ACTIONS(4742), 1, anon_sym_SEMI, - STATE(1645), 1, + STATE(1930), 1, sym_gnu_asm_expression, - STATE(1646), 1, + STATE(1946), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4702), 2, anon_sym_asm, anon_sym___asm__, - [60439] = 7, + [69083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4746), 1, + anon_sym___attribute, + ACTIONS(4744), 6, anon_sym_COMMA, - ACTIONS(4178), 1, - anon_sym_SEMI, - STATE(1648), 1, - sym_gnu_asm_expression, - STATE(1649), 1, - aux_sym_declaration_repeat1, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - [60462] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3879), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4180), 1, - anon_sym_RPAREN, - STATE(1410), 1, - sym_parameter_list, - STATE(1366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60485] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4182), 1, - anon_sym_SEMI, - STATE(1618), 1, - sym_gnu_asm_expression, - STATE(1627), 1, - aux_sym_declaration_repeat1, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - [60508] = 4, + anon_sym_COLON, + [69098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, - anon_sym_COMMA, - ACTIONS(4188), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4184), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [60525] = 3, + ACTIONS(2434), 1, + anon_sym_LBRACK, + ACTIONS(4748), 1, + anon_sym_EQ, + ACTIONS(4750), 1, + anon_sym_DOT, + STATE(1748), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [69117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4192), 1, + ACTIONS(4754), 1, anon_sym___attribute, - ACTIONS(4190), 6, + ACTIONS(4752), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60540] = 3, + [69132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 1, + ACTIONS(4758), 1, anon_sym___attribute, - ACTIONS(4194), 6, + ACTIONS(4756), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60555] = 4, + [69147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(4760), 1, anon_sym_LPAREN2, - STATE(1441), 2, + STATE(1746), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4119), 4, + ACTIONS(4762), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [60572] = 3, + [69164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 1, + ACTIONS(4767), 1, anon_sym___attribute, - ACTIONS(4200), 6, + ACTIONS(4765), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60587] = 7, + [69179] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4769), 1, + anon_sym_LBRACK, + ACTIONS(4772), 1, + anon_sym_EQ, + ACTIONS(4774), 1, + anon_sym_DOT, + STATE(1748), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [69198] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4204), 1, + ACTIONS(4777), 1, anon_sym_SEMI, - STATE(1621), 1, + STATE(1955), 1, sym_gnu_asm_expression, - STATE(1632), 1, + STATE(1956), 1, aux_sym_declaration_repeat1, - ACTIONS(4115), 2, + ACTIONS(4702), 2, anon_sym_asm, anon_sym___asm__, - [60610] = 7, + [69221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4781), 1, + anon_sym___attribute, + ACTIONS(4779), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3756), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_EQ, - STATE(1268), 1, - sym_parameter_list, - STATE(1295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60633] = 7, + anon_sym_COLON, + [69236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3778), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(4783), 1, anon_sym_RPAREN, - STATE(1403), 1, + STATE(1697), 1, sym_parameter_list, - STATE(1362), 2, + STATE(1662), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60656] = 3, + [69259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, + ACTIONS(4787), 1, anon_sym___attribute, - ACTIONS(4208), 6, + ACTIONS(4785), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60671] = 3, + [69274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4791), 1, anon_sym___attribute, - ACTIONS(4212), 6, + ACTIONS(4789), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60686] = 3, + [69289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(4795), 1, anon_sym___attribute, - ACTIONS(4216), 6, + ACTIONS(4793), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60701] = 5, + [69304] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(93), 1, + anon_sym___asm, + ACTIONS(4698), 1, + anon_sym_COMMA, + ACTIONS(4797), 1, + anon_sym_SEMI, + STATE(1872), 1, + sym_gnu_asm_expression, + STATE(1873), 1, + aux_sym_declaration_repeat1, + ACTIONS(4702), 2, + anon_sym_asm, + anon_sym___asm__, + [69327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4799), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + STATE(1746), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4801), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [69344] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym___asm, + ACTIONS(4698), 1, + anon_sym_COMMA, + ACTIONS(4803), 1, + anon_sym_SEMI, + STATE(1871), 1, + sym_gnu_asm_expression, + STATE(1884), 1, + aux_sym_declaration_repeat1, + ACTIONS(4702), 2, + anon_sym_asm, + anon_sym___asm__, + [69367] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4353), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + anon_sym_EQ, + STATE(1558), 1, + sym_parameter_list, + STATE(1585), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [69390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4807), 1, + anon_sym___attribute, + ACTIONS(4805), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, - STATE(1465), 1, + anon_sym_COLON, + [69405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4600), 1, + anon_sym_LBRACK, + STATE(1740), 1, sym_parameter_list, - ACTIONS(4220), 3, + ACTIONS(4809), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60719] = 5, + [69423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4811), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4813), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [69437] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym___asm, - STATE(1770), 1, + STATE(1983), 1, sym_gnu_asm_expression, - ACTIONS(4115), 2, + ACTIONS(4702), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(4222), 2, + ACTIONS(4815), 2, anon_sym_COMMA, anon_sym_SEMI, - [60737] = 3, + [69455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 2, + ACTIONS(4817), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4226), 4, + ACTIONS(4819), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60751] = 3, + [69469] = 3, ACTIONS(3), 1, sym_comment, - STATE(1952), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [60765] = 5, + ACTIONS(4821), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4823), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [69483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4639), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4637), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [69497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4825), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4827), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [69511] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4228), 2, + ACTIONS(4829), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1367), 2, + STATE(1658), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [60783] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(630), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [60797] = 3, + [69529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4232), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [60811] = 6, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4600), 1, + anon_sym_LBRACK, + STATE(1740), 1, + sym_parameter_list, + ACTIONS(4831), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [69547] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3756), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - STATE(1268), 1, + STATE(1558), 1, sym_parameter_list, - STATE(1295), 2, + STATE(1585), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60831] = 3, + [69567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 2, + ACTIONS(93), 1, + anon_sym___asm, + STATE(1977), 1, + sym_gnu_asm_expression, + ACTIONS(4702), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4833), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [69585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4835), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4236), 4, + ACTIONS(4837), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60845] = 3, + [69599] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 2, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(4103), 1, + anon_sym___attribute__, + ACTIONS(4839), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1658), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4841), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4240), 4, + ACTIONS(4843), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60859] = 5, + [69631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(4600), 1, anon_sym_LBRACK, - STATE(1465), 1, + STATE(1740), 1, sym_parameter_list, - ACTIONS(4242), 3, + ACTIONS(4845), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4246), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [60891] = 5, + [69649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(4351), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, + ACTIONS(4600), 1, anon_sym_LBRACK, - STATE(1465), 1, + STATE(1740), 1, sym_parameter_list, - ACTIONS(4248), 3, + ACTIONS(4847), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60909] = 3, + [69667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4046), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [60923] = 3, + STATE(2201), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [69681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 2, + ACTIONS(4849), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4252), 4, + ACTIONS(4851), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60937] = 3, + [69695] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2110), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [69709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 2, + ACTIONS(4817), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4256), 4, + ACTIONS(4819), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60951] = 3, + [69723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4492), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4260), 4, + ACTIONS(4853), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60965] = 5, + [69737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(4262), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [60983] = 5, + STATE(853), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [69751] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4262), 2, + ACTIONS(4839), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1367), 2, + STATE(1658), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61001] = 3, + [69769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4821), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4260), 4, + ACTIONS(4823), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [61015] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - STATE(1772), 1, - sym_gnu_asm_expression, - ACTIONS(4115), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4264), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [61033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3995), 1, - anon_sym_LBRACK, - STATE(1465), 1, - sym_parameter_list, - ACTIONS(4266), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [61051] = 3, + [69783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 2, + ACTIONS(4855), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4226), 4, + ACTIONS(4857), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [61065] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1991), 1, - sym_string_literal, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [61079] = 3, + [69797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4268), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [61093] = 5, + ACTIONS(4859), 5, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [69808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(4464), 1, + anon_sym_COMMA, + ACTIONS(4863), 1, anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(4270), 1, + STATE(1808), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4861), 2, anon_sym_SEMI, - STATE(1525), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61110] = 5, + anon_sym___attribute__, + [69825] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4272), 1, + ACTIONS(4865), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1797), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61127] = 5, + [69842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3482), 1, - anon_sym___attribute__, - ACTIONS(4274), 1, - anon_sym_SEMI, - STATE(1514), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61144] = 5, + ACTIONS(2885), 1, + anon_sym_LPAREN2, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + STATE(2030), 1, + sym_argument_list, + ACTIONS(4867), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [69859] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4276), 1, + ACTIONS(4871), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1790), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61161] = 5, + [69876] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4278), 1, + ACTIONS(4873), 1, anon_sym_SEMI, - STATE(1520), 2, + STATE(1658), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61178] = 5, + [69893] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4280), 1, + ACTIONS(4875), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1658), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61195] = 5, + [69910] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4282), 1, + ACTIONS(4877), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1791), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61212] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3772), 1, - anon_sym_COMMA, - ACTIONS(4286), 1, - anon_sym___attribute, - STATE(1507), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4284), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [61229] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_COMMA, - ACTIONS(4293), 1, - anon_sym___attribute, - STATE(1507), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4291), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [61246] = 5, + [69927] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4295), 1, + ACTIONS(4879), 1, anon_sym_SEMI, - STATE(1505), 2, + STATE(1658), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61263] = 5, + [69944] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4297), 1, + ACTIONS(4881), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1798), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61280] = 5, + [69961] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4299), 1, + ACTIONS(4883), 1, anon_sym_SEMI, - STATE(1500), 2, + STATE(1658), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61297] = 6, + [69978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, + ACTIONS(4325), 1, sym_identifier, - STATE(737), 1, - sym_field_declaration_list, - STATE(1636), 1, - sym_ms_declspec_modifier, - [61316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4305), 1, - anon_sym___asm, - ACTIONS(4303), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [61329] = 5, + ACTIONS(4885), 1, + aux_sym_preproc_if_token2, + STATE(1733), 1, + sym_enumerator, + STATE(1822), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1826), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [69997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 1, - anon_sym_COMMA, - ACTIONS(4312), 1, + ACTIONS(35), 1, anon_sym___attribute, - STATE(1513), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4310), 2, - anon_sym_SEMI, + ACTIONS(4103), 1, anon_sym___attribute__, - [61346] = 5, + ACTIONS(4887), 1, + anon_sym_SEMI, + STATE(1658), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [70014] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4314), 1, + ACTIONS(4889), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1658), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61363] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(4316), 1, - sym_identifier, - STATE(732), 1, - sym_field_declaration_list, - STATE(1610), 1, - sym_ms_declspec_modifier, - [61382] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - STATE(1727), 1, - sym_argument_list, - ACTIONS(4318), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61399] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - sym_identifier, - ACTIONS(4322), 1, - aux_sym_preproc_if_token2, - STATE(1463), 1, - sym_enumerator, - STATE(1529), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1535), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61418] = 5, + [70031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, + ACTIONS(4385), 1, anon_sym_COMMA, - ACTIONS(4326), 1, + ACTIONS(4893), 1, anon_sym___attribute, - STATE(1513), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4324), 2, + STATE(1806), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4891), 2, anon_sym_SEMI, anon_sym___attribute__, - [61435] = 5, + [70048] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4328), 1, + ACTIONS(4895), 1, anon_sym_SEMI, - STATE(1504), 2, + STATE(1802), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61452] = 5, + [70065] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4330), 1, + ACTIONS(4897), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1658), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4332), 5, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [61480] = 5, + [70082] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4334), 1, + ACTIONS(4899), 1, anon_sym_SEMI, - STATE(1502), 2, + STATE(1658), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61497] = 5, + [70099] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4336), 1, + ACTIONS(4901), 1, anon_sym_SEMI, - STATE(1509), 2, + STATE(1801), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61514] = 5, + [70116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(4385), 1, anon_sym_COMMA, - ACTIONS(4340), 1, + ACTIONS(4905), 1, anon_sym___attribute, - STATE(1506), 1, + STATE(1807), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4338), 2, + ACTIONS(4903), 2, anon_sym_SEMI, anon_sym___attribute__, - [61531] = 5, + [70133] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4342), 1, + ACTIONS(4907), 1, anon_sym_SEMI, - STATE(1367), 2, + STATE(1793), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61548] = 5, + [70150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(4385), 1, anon_sym_COMMA, - ACTIONS(4346), 1, + ACTIONS(4911), 1, anon_sym___attribute, - STATE(1507), 1, + STATE(1807), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4344), 2, + ACTIONS(4909), 2, anon_sym_SEMI, anon_sym___attribute__, - [61565] = 4, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4348), 1, - anon_sym_SQUOTE, - STATE(1557), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4350), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [61579] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4352), 1, - aux_sym_preproc_include_token2, - ACTIONS(4354), 1, - anon_sym_LPAREN, - ACTIONS(4356), 1, - sym_preproc_arg, - STATE(1718), 1, - sym_preproc_params, - [61595] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, - sym_identifier, - ACTIONS(4358), 1, - aux_sym_preproc_if_token2, - STATE(1415), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, - sym_enumerator, - [61611] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4360), 1, - anon_sym_COMMA, - STATE(1538), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4362), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [61625] = 5, + [70167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4364), 1, + ACTIONS(4913), 1, anon_sym_COMMA, - ACTIONS(4366), 1, - anon_sym_RPAREN, - STATE(1607), 1, - aux_sym_parameter_list_repeat1, - STATE(1666), 1, - aux_sym__old_style_parameter_list_repeat1, - [61641] = 4, + ACTIONS(4918), 1, + anon_sym___attribute, + STATE(1807), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4916), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [70184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(4920), 1, anon_sym_COMMA, - STATE(1549), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4370), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [61655] = 5, + ACTIONS(4925), 1, + anon_sym___attribute, + STATE(1808), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4923), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [70201] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4372), 1, + ACTIONS(4927), 1, anon_sym_SEMI, - STATE(2014), 1, + STATE(1795), 2, sym_attribute_specifier, - [61671] = 5, + aux_sym_type_definition_repeat1, + [70218] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(2185), 1, + anon_sym___declspec, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(4929), 1, sym_identifier, - ACTIONS(4322), 1, - aux_sym_preproc_if_token2, - STATE(1529), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1900), 1, - sym_enumerator, - [61687] = 4, + STATE(959), 1, + sym_field_declaration_list, + STATE(1917), 1, + sym_ms_declspec_modifier, + [70237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4933), 1, + anon_sym___asm, + ACTIONS(4931), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [70250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(4374), 1, + ACTIONS(4885), 1, aux_sym_preproc_if_token2, - STATE(1427), 2, + STATE(1822), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2240), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - STATE(1774), 1, - sym_argument_list, - ACTIONS(4376), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61715] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4378), 1, - anon_sym_DQUOTE, - ACTIONS(4380), 1, - aux_sym_string_literal_token1, - ACTIONS(4382), 1, - sym_escape_sequence, - STATE(1554), 1, - aux_sym_string_literal_repeat1, - [61731] = 4, + [70266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4935), 1, anon_sym_COMMA, - STATE(1538), 1, + STATE(1813), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4387), 2, + ACTIONS(4938), 2, anon_sym_RPAREN, anon_sym_COLON, - [61745] = 4, + [70280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, + ACTIONS(4940), 1, anon_sym___except, - ACTIONS(4391), 1, + ACTIONS(4942), 1, anon_sym___finally, - STATE(198), 2, + STATE(164), 2, sym_seh_except_clause, sym_seh_finally_clause, - [61759] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4393), 1, - anon_sym_DQUOTE, - ACTIONS(4395), 1, - aux_sym_string_literal_token1, - ACTIONS(4397), 1, - sym_escape_sequence, - STATE(1570), 1, - aux_sym_string_literal_repeat1, - [61775] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4354), 1, - anon_sym_LPAREN, - ACTIONS(4399), 1, - aux_sym_preproc_include_token2, - ACTIONS(4401), 1, - sym_preproc_arg, - STATE(1708), 1, - sym_preproc_params, - [61791] = 4, + [70294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4403), 1, - anon_sym___except, - ACTIONS(4405), 1, - anon_sym___finally, - STATE(242), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61805] = 5, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(4103), 1, + anon_sym___attribute__, + ACTIONS(4944), 1, + anon_sym_SEMI, + STATE(2187), 1, + sym_attribute_specifier, + [70310] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4407), 1, + ACTIONS(4946), 1, anon_sym_SEMI, - STATE(2008), 1, + STATE(2259), 1, sym_attribute_specifier, - [61821] = 4, + [70326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 1, + anon_sym___attribute, + ACTIONS(4948), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [70338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4600), 1, + anon_sym_LBRACK, + ACTIONS(4952), 1, + anon_sym_RPAREN, + STATE(1740), 1, + sym_parameter_list, + [70354] = 5, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4954), 1, + aux_sym_preproc_include_token2, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(4958), 1, + sym_preproc_arg, + STATE(2021), 1, + sym_preproc_params, + [70370] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + anon_sym_COMMA, + STATE(1820), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4963), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [70384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4965), 1, anon_sym___except, - ACTIONS(4411), 1, + ACTIONS(4967), 1, anon_sym___finally, - STATE(242), 2, + STATE(236), 2, sym_seh_except_clause, sym_seh_finally_clause, - [61835] = 4, + [70398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4969), 1, + aux_sym_preproc_if_token2, + STATE(1699), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2240), 1, + sym_enumerator, + [70414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 1, + ACTIONS(4971), 1, anon_sym_COMMA, - STATE(1545), 1, + STATE(1840), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4416), 2, + ACTIONS(4973), 2, anon_sym_RPAREN, anon_sym_COLON, - [61849] = 4, + [70428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym___except, - ACTIONS(4420), 1, - anon_sym___finally, - STATE(222), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61863] = 5, + ACTIONS(4975), 1, + anon_sym_COMMA, + STATE(1842), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4977), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [70442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, - anon_sym_LPAREN2, - ACTIONS(3995), 1, - anon_sym_LBRACK, - ACTIONS(4422), 1, + ACTIONS(4979), 1, + anon_sym_COMMA, + ACTIONS(4981), 1, anon_sym_RPAREN, - STATE(1465), 1, - sym_parameter_list, - [61879] = 4, + STATE(1928), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(1957), 1, + aux_sym_parameter_list_repeat1, + [70458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + sym_identifier, + ACTIONS(4983), 1, + aux_sym_preproc_if_token2, + STATE(1701), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [70472] = 5, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + aux_sym_preproc_include_token2, + ACTIONS(4987), 1, + sym_preproc_arg, + STATE(1992), 1, + sym_preproc_params, + [70488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4989), 1, anon_sym___except, - ACTIONS(4426), 1, + ACTIONS(4991), 1, anon_sym___finally, - STATE(89), 2, + STATE(301), 2, sym_seh_except_clause, sym_seh_finally_clause, - [61893] = 4, - ACTIONS(3), 1, + [70502] = 5, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_COMMA, - STATE(1561), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4428), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [61907] = 4, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(4993), 1, + aux_sym_preproc_include_token2, + ACTIONS(4995), 1, + sym_preproc_arg, + STATE(1968), 1, + sym_preproc_params, + [70518] = 5, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(4997), 1, + aux_sym_preproc_include_token2, + ACTIONS(4999), 1, + sym_preproc_arg, + STATE(1996), 1, + sym_preproc_params, + [70534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(4430), 1, + ACTIONS(5001), 1, aux_sym_preproc_if_token2, - STATE(1535), 2, + STATE(1826), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61921] = 4, + [70548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(5003), 1, anon_sym_COMMA, - STATE(1563), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4434), 2, + STATE(1836), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(5005), 2, anon_sym_RPAREN, anon_sym_COLON, - [61935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 1, - anon_sym___attribute, - ACTIONS(4436), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [61947] = 4, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4440), 1, - anon_sym_SQUOTE, - STATE(1557), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4350), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [61961] = 5, - ACTIONS(3515), 1, + [70562] = 5, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4442), 1, + ACTIONS(5007), 1, anon_sym_DQUOTE, - ACTIONS(4444), 1, + ACTIONS(5009), 1, aux_sym_string_literal_token1, - ACTIONS(4446), 1, + ACTIONS(5011), 1, sym_escape_sequence, - STATE(1565), 1, + STATE(1845), 1, aux_sym_string_literal_repeat1, - [61977] = 5, + [70578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(2885), 1, anon_sym_LPAREN2, - ACTIONS(3995), 1, - anon_sym_LBRACK, - ACTIONS(4448), 1, - anon_sym_RPAREN, - STATE(1465), 1, - sym_parameter_list, - [61993] = 5, - ACTIONS(3515), 1, + STATE(1967), 1, + sym_argument_list, + ACTIONS(5013), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [70592] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, - aux_sym_preproc_include_token2, - ACTIONS(4452), 1, - sym_preproc_arg, - STATE(1692), 1, - sym_preproc_params, - [62009] = 4, - ACTIONS(3515), 1, + ACTIONS(5015), 1, + anon_sym___except, + ACTIONS(5017), 1, + anon_sym___finally, + STATE(301), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [70606] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, - anon_sym_SQUOTE, - STATE(1557), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4456), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [62023] = 5, - ACTIONS(3515), 1, + ACTIONS(5003), 1, + anon_sym_COMMA, + STATE(1820), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(5019), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [70620] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(4971), 1, + anon_sym_COMMA, + STATE(1823), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(5021), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [70634] = 5, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5023), 1, anon_sym_DQUOTE, - ACTIONS(4461), 1, + ACTIONS(5025), 1, aux_sym_string_literal_token1, - ACTIONS(4463), 1, - sym_escape_sequence, - STATE(1569), 1, - aux_sym_string_literal_repeat1, - [62039] = 5, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4354), 1, - anon_sym_LPAREN, - ACTIONS(4465), 1, - aux_sym_preproc_include_token2, - ACTIONS(4467), 1, - sym_preproc_arg, - STATE(1699), 1, - sym_preproc_params, - [62055] = 5, - ACTIONS(3515), 1, + ACTIONS(5027), 1, + sym_escape_sequence, + STATE(1847), 1, + aux_sym_string_literal_repeat1, + [70650] = 5, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4956), 1, anon_sym_LPAREN, - ACTIONS(4469), 1, + ACTIONS(5029), 1, aux_sym_preproc_include_token2, - ACTIONS(4471), 1, + ACTIONS(5031), 1, sym_preproc_arg, - STATE(1707), 1, + STATE(2003), 1, sym_preproc_params, - [62071] = 4, + [70666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4473), 1, + ACTIONS(5033), 1, anon_sym_COMMA, - STATE(1561), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4476), 2, + STATE(1840), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(5036), 2, anon_sym_RPAREN, anon_sym_COLON, - [62085] = 5, - ACTIONS(3515), 1, + [70680] = 5, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4354), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - aux_sym_preproc_include_token2, - ACTIONS(4480), 1, - sym_preproc_arg, - STATE(1700), 1, - sym_preproc_params, - [62101] = 4, + ACTIONS(5038), 1, + anon_sym_DQUOTE, + ACTIONS(5040), 1, + aux_sym_string_literal_token1, + ACTIONS(5042), 1, + sym_escape_sequence, + STATE(1853), 1, + aux_sym_string_literal_repeat1, + [70696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(4975), 1, anon_sym_COMMA, - STATE(1545), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4482), 2, + STATE(1813), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(5044), 2, anon_sym_RPAREN, anon_sym_COLON, - [62115] = 4, - ACTIONS(3515), 1, + [70710] = 4, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4484), 1, + ACTIONS(5046), 1, anon_sym_SQUOTE, - STATE(1557), 1, + STATE(1843), 1, aux_sym_char_literal_repeat1, - ACTIONS(4350), 2, + ACTIONS(5048), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [62129] = 5, - ACTIONS(3515), 1, + [70724] = 5, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(5051), 1, anon_sym_DQUOTE, - ACTIONS(4488), 1, + ACTIONS(5053), 1, aux_sym_string_literal_token1, - ACTIONS(4491), 1, + ACTIONS(5055), 1, sym_escape_sequence, - STATE(1565), 1, + STATE(1833), 1, aux_sym_string_literal_repeat1, - [62145] = 4, - ACTIONS(3), 1, + [70740] = 5, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4360), 1, - anon_sym_COMMA, - STATE(1530), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4494), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [62159] = 5, - ACTIONS(3515), 1, + ACTIONS(5057), 1, + anon_sym_DQUOTE, + ACTIONS(5059), 1, + aux_sym_string_literal_token1, + ACTIONS(5062), 1, + sym_escape_sequence, + STATE(1845), 1, + aux_sym_string_literal_repeat1, + [70756] = 4, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5065), 1, + anon_sym_SQUOTE, + STATE(1843), 1, + aux_sym_char_literal_repeat1, + ACTIONS(5067), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [70770] = 5, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5009), 1, + aux_sym_string_literal_token1, + ACTIONS(5011), 1, + sym_escape_sequence, + ACTIONS(5069), 1, + anon_sym_DQUOTE, + STATE(1845), 1, + aux_sym_string_literal_repeat1, + [70786] = 5, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4956), 1, anon_sym_LPAREN, - ACTIONS(4496), 1, + ACTIONS(5071), 1, aux_sym_preproc_include_token2, - ACTIONS(4498), 1, + ACTIONS(5073), 1, sym_preproc_arg, - STATE(1712), 1, + STATE(2010), 1, sym_preproc_params, - [62175] = 5, + [70802] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4351), 1, + anon_sym_LPAREN2, + ACTIONS(4600), 1, + anon_sym_LBRACK, + ACTIONS(5075), 1, + anon_sym_RPAREN, + STATE(1740), 1, + sym_parameter_list, + [70818] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(3482), 1, + ACTIONS(4103), 1, anon_sym___attribute__, - ACTIONS(4500), 1, + ACTIONS(5077), 1, anon_sym_SEMI, - STATE(2018), 1, + STATE(2159), 1, sym_attribute_specifier, - [62191] = 5, - ACTIONS(3515), 1, + [70834] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 1, - aux_sym_string_literal_token1, - ACTIONS(4446), 1, + ACTIONS(5079), 1, + anon_sym___except, + ACTIONS(5081), 1, + anon_sym___finally, + STATE(271), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [70848] = 4, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5083), 1, + anon_sym_SQUOTE, + STATE(1843), 1, + aux_sym_char_literal_repeat1, + ACTIONS(5067), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - STATE(1565), 1, - aux_sym_string_literal_repeat1, - [62207] = 5, - ACTIONS(3515), 1, + [70862] = 5, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4444), 1, + ACTIONS(5009), 1, aux_sym_string_literal_token1, - ACTIONS(4446), 1, + ACTIONS(5011), 1, sym_escape_sequence, - ACTIONS(4504), 1, + ACTIONS(5085), 1, anon_sym_DQUOTE, - STATE(1565), 1, + STATE(1845), 1, aux_sym_string_literal_repeat1, - [62223] = 4, - ACTIONS(3), 1, + [70878] = 4, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4506), 1, - anon_sym_SEMI, - STATE(1634), 1, - aux_sym_declaration_repeat1, - [62236] = 4, + ACTIONS(5087), 1, + anon_sym_SQUOTE, + STATE(1843), 1, + aux_sym_char_literal_repeat1, + ACTIONS(5067), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [70892] = 5, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(5089), 1, + aux_sym_preproc_include_token2, + ACTIONS(5091), 1, + sym_preproc_arg, + STATE(1979), 1, + sym_preproc_params, + [70908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(3721), 1, anon_sym_COMMA, - ACTIONS(4508), 1, + ACTIONS(3723), 1, anon_sym_RPAREN, - STATE(1661), 1, - aux_sym_argument_list_repeat1, - [62249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2924), 1, - anon_sym_LBRACE, - ACTIONS(4510), 1, - sym_identifier, - STATE(1069), 1, - sym_enumerator_list, - [62262] = 4, + STATE(1877), 1, + aux_sym__attribute_argument_list_repeat1, + [70921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 1, - anon_sym_RPAREN, - ACTIONS(4514), 1, - anon_sym_COLON, - STATE(1682), 1, - sym_gnu_asm_clobber_list, - [62275] = 2, + ACTIONS(4698), 1, + anon_sym_COMMA, + ACTIONS(5093), 1, + anon_sym_SEMI, + STATE(1890), 1, + aux_sym_declaration_repeat1, + [70934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 3, + ACTIONS(4698), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [62284] = 4, + ACTIONS(5095), 1, + anon_sym_SEMI, + STATE(1953), 1, + aux_sym_declaration_repeat1, + [70947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4521), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_generic_expression_repeat1, - [62297] = 4, + ACTIONS(5097), 1, + anon_sym_SEMI, + STATE(1953), 1, + aux_sym_declaration_repeat1, + [70960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, + ACTIONS(5099), 1, anon_sym_COMMA, - ACTIONS(4526), 1, + ACTIONS(5101), 1, anon_sym_RPAREN, - STATE(1577), 1, - aux_sym_preproc_params_repeat1, - [62310] = 4, - ACTIONS(3515), 1, + STATE(1957), 1, + aux_sym_parameter_list_repeat1, + [70973] = 4, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4528), 1, + ACTIONS(5103), 1, aux_sym_preproc_include_token2, - ACTIONS(4530), 1, + ACTIONS(5105), 1, anon_sym_LPAREN2, - STATE(1802), 1, + STATE(2139), 1, sym_preproc_argument_list, - [62323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4532), 1, - anon_sym_RPAREN, - ACTIONS(4534), 1, - anon_sym_COLON, - STATE(1574), 1, - sym_gnu_asm_input_operand_list, - [62336] = 4, + [70986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(5107), 3, anon_sym_COMMA, - ACTIONS(4539), 1, anon_sym_RPAREN, - STATE(1580), 1, - aux_sym__old_style_parameter_list_repeat1, - [62349] = 4, + anon_sym_COLON, + [70995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(5109), 1, + anon_sym_EQ, + ACTIONS(4676), 2, anon_sym_COMMA, - ACTIONS(4543), 1, - anon_sym_RBRACK_RBRACK, - STATE(1590), 1, - aux_sym_attribute_declaration_repeat1, - [62362] = 4, + anon_sym_RBRACE, + [71006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(4545), 1, + ACTIONS(3813), 1, anon_sym_RPAREN, - STATE(1672), 1, - aux_sym_preproc_argument_list_repeat1, - [62375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 1, + ACTIONS(5111), 1, anon_sym_COMMA, - ACTIONS(4547), 1, - anon_sym_RBRACK_RBRACK, - STATE(1656), 1, - aux_sym_attribute_declaration_repeat1, - [62388] = 4, + STATE(1864), 1, + aux_sym__attribute_argument_list_repeat1, + [71019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4551), 1, - anon_sym_RPAREN, - STATE(1577), 1, - aux_sym_preproc_params_repeat1, - [62401] = 2, + ACTIONS(5114), 1, + anon_sym_SEMI, + STATE(1875), 1, + aux_sym_declaration_repeat1, + [71032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4553), 3, + ACTIONS(5116), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [62410] = 4, + [71041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4555), 1, + ACTIONS(5118), 1, anon_sym_SEMI, - STATE(1594), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62423] = 4, + [71054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(3721), 1, anon_sym_COMMA, - ACTIONS(4557), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_generic_expression_repeat1, - [62436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4559), 1, - sym_identifier, - STATE(1695), 1, - sym_variadic_parameter, - [62449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4563), 1, + ACTIONS(5120), 1, anon_sym_RPAREN, - ACTIONS(4561), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [62460] = 4, + STATE(1864), 1, + aux_sym__attribute_argument_list_repeat1, + [71067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4565), 1, - anon_sym_RBRACK_RBRACK, - STATE(1656), 1, - aux_sym_attribute_declaration_repeat1, - [62473] = 2, + ACTIONS(5122), 1, + anon_sym_SEMI, + STATE(1858), 1, + aux_sym_declaration_repeat1, + [71080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 3, - anon_sym_COMMA, + ACTIONS(5124), 1, anon_sym_RPAREN, + ACTIONS(5126), 1, anon_sym_COLON, - [62482] = 4, + STATE(1924), 1, + sym_gnu_asm_clobber_list, + [71093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4569), 1, + ACTIONS(5128), 1, anon_sym_SEMI, - STATE(1602), 1, + STATE(1859), 1, aux_sym_declaration_repeat1, - [62495] = 4, + [71106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4571), 1, + ACTIONS(5130), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1882), 1, aux_sym_declaration_repeat1, - [62508] = 4, + [71119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4573), 1, + ACTIONS(5132), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62521] = 2, + [71132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [62530] = 4, + ACTIONS(3827), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [71141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4577), 1, - anon_sym_RBRACK_RBRACK, - STATE(1657), 1, - aux_sym_attribute_declaration_repeat1, - [62543] = 4, + ACTIONS(5134), 1, + anon_sym_SEMI, + STATE(1953), 1, + aux_sym_declaration_repeat1, + [71154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4579), 1, + ACTIONS(5136), 1, anon_sym_SEMI, - STATE(1664), 1, + STATE(1922), 1, aux_sym_declaration_repeat1, - [62556] = 4, + [71167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, + ACTIONS(3721), 1, + anon_sym_COMMA, + ACTIONS(5138), 1, anon_sym_RPAREN, - ACTIONS(4583), 1, - anon_sym_COLON, - STATE(1579), 1, - sym_gnu_asm_output_operand_list, - [62569] = 2, + STATE(1864), 1, + aux_sym__attribute_argument_list_repeat1, + [71180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 3, + ACTIONS(3705), 1, anon_sym_COMMA, + ACTIONS(5140), 1, anon_sym_RPAREN, - anon_sym_COLON, - [62578] = 4, + STATE(1965), 1, + aux_sym_argument_list_repeat1, + [71193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4587), 1, + ACTIONS(5142), 1, anon_sym_SEMI, - STATE(1606), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62591] = 4, + [71206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4589), 1, + ACTIONS(5144), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1887), 1, aux_sym_declaration_repeat1, - [62604] = 4, + [71219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4591), 1, + ACTIONS(5146), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62617] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4593), 1, - anon_sym_COMMA, - ACTIONS(4595), 1, - anon_sym_RPAREN, - STATE(1607), 1, - aux_sym_parameter_list_repeat1, - [62630] = 4, + [71232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4597), 1, - anon_sym_RPAREN, - STATE(1672), 1, - aux_sym_preproc_argument_list_repeat1, - [62643] = 2, + ACTIONS(5148), 1, + anon_sym_SEMI, + STATE(1953), 1, + aux_sym_declaration_repeat1, + [71245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 3, + ACTIONS(4698), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [62652] = 4, + ACTIONS(5150), 1, + anon_sym_SEMI, + STATE(1867), 1, + aux_sym_declaration_repeat1, + [71258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4601), 1, + ACTIONS(5152), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62665] = 4, + [71271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, - anon_sym_COMMA, - ACTIONS(4603), 1, + ACTIONS(5154), 1, anon_sym_RPAREN, - STATE(1676), 1, - aux_sym_parameter_list_repeat1, - [62678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4583), 1, + ACTIONS(5156), 1, anon_sym_COLON, - ACTIONS(4605), 1, - anon_sym_RPAREN, - STATE(1616), 1, - sym_gnu_asm_output_operand_list, - [62691] = 4, + STATE(2204), 1, + sym_gnu_asm_goto_list, + [71284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, - anon_sym_RBRACE, - ACTIONS(4607), 1, + ACTIONS(5158), 1, anon_sym_COMMA, - STATE(1609), 1, - aux_sym_initializer_list_repeat1, - [62704] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(4610), 1, - sym_identifier, - STATE(740), 1, - sym_field_declaration_list, - [62717] = 4, + ACTIONS(5160), 1, + anon_sym_RPAREN, + STATE(1914), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [71297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(4612), 1, - sym_identifier, - STATE(737), 1, - sym_field_declaration_list, - [62730] = 4, + ACTIONS(4698), 1, + anon_sym_COMMA, + ACTIONS(5162), 1, + anon_sym_SEMI, + STATE(1953), 1, + aux_sym_declaration_repeat1, + [71310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, + ACTIONS(5164), 1, anon_sym_COMMA, - ACTIONS(4616), 1, + ACTIONS(5166), 1, anon_sym_RPAREN, - STATE(1668), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [62743] = 4, + STATE(1951), 1, + aux_sym_preproc_params_repeat1, + [71323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4618), 1, + ACTIONS(5168), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62756] = 4, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4530), 1, - anon_sym_LPAREN2, - ACTIONS(4620), 1, - aux_sym_preproc_include_token2, - STATE(1802), 1, - sym_preproc_argument_list, - [62769] = 4, + [71336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4622), 1, + ACTIONS(5170), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4534), 1, - anon_sym_COLON, - ACTIONS(4624), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym_gnu_asm_input_operand_list, - [62795] = 4, + [71349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, - anon_sym_COMMA, - ACTIONS(4626), 1, - anon_sym_RPAREN, - STATE(1661), 1, - aux_sym_argument_list_repeat1, - [62808] = 4, + ACTIONS(2338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5172), 1, + sym_identifier, + STATE(1970), 1, + sym_variadic_parameter, + [71362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4628), 1, + ACTIONS(5174), 1, anon_sym_SEMI, - STATE(1622), 1, + STATE(1896), 1, aux_sym_declaration_repeat1, - [62821] = 4, + [71375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3675), 1, anon_sym_COMMA, - ACTIONS(4630), 1, - anon_sym_RPAREN, - STATE(1672), 1, - aux_sym_preproc_argument_list_repeat1, - [62834] = 4, + ACTIONS(3701), 1, + anon_sym_RBRACE, + STATE(1954), 1, + aux_sym_initializer_list_repeat1, + [71388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4632), 1, + ACTIONS(5176), 1, anon_sym_SEMI, - STATE(1625), 1, + STATE(1899), 1, aux_sym_declaration_repeat1, - [62847] = 4, + [71401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4634), 1, + ACTIONS(5178), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62860] = 4, + [71414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4636), 1, + ACTIONS(5180), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62873] = 4, + [71427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4638), 1, + ACTIONS(5182), 1, anon_sym_SEMI, - STATE(1686), 1, + STATE(1900), 1, aux_sym_declaration_repeat1, - [62886] = 4, + [71440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4640), 1, + ACTIONS(5184), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62899] = 4, + [71453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4642), 1, + ACTIONS(5186), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62912] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 1, - anon_sym_COMMA, - ACTIONS(3225), 1, - anon_sym_RBRACE, - STATE(1670), 1, - aux_sym_initializer_list_repeat1, - [62925] = 4, + [71466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4644), 1, + ACTIONS(5188), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [62938] = 4, + [71479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, + ACTIONS(3705), 1, anon_sym_COMMA, - ACTIONS(4646), 1, + ACTIONS(5190), 1, anon_sym_RPAREN, - STATE(1612), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [62951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4648), 1, - anon_sym_SEMI, - STATE(1633), 1, - aux_sym_declaration_repeat1, - [62964] = 4, + STATE(1965), 1, + aux_sym_argument_list_repeat1, + [71492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(5192), 1, anon_sym_COMMA, - ACTIONS(4650), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [62977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4652), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [62986] = 4, + ACTIONS(5195), 1, + anon_sym_RPAREN, + STATE(1902), 1, + aux_sym_parameter_list_repeat1, + [71505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4654), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [62999] = 4, + ACTIONS(2249), 1, + anon_sym_LBRACE, + ACTIONS(5197), 1, + sym_identifier, + STATE(1315), 1, + sym_enumerator_list, + [71518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4063), 1, anon_sym_COMMA, - ACTIONS(4656), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63012] = 4, + ACTIONS(5199), 1, + anon_sym_RPAREN, + STATE(1933), 1, + aux_sym_preproc_argument_list_repeat1, + [71531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(5201), 3, anon_sym_COMMA, - ACTIONS(4658), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63025] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [71540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(3705), 1, anon_sym_COMMA, - ACTIONS(4660), 1, - anon_sym_SEMI, - STATE(1639), 1, - aux_sym_declaration_repeat1, - [63038] = 4, + ACTIONS(3707), 1, + anon_sym_RPAREN, + STATE(1878), 1, + aux_sym_argument_list_repeat1, + [71553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2187), 1, anon_sym_LBRACE, - ACTIONS(4662), 1, + ACTIONS(5203), 1, sym_identifier, - STATE(731), 1, + STATE(959), 1, sym_field_declaration_list, - [63051] = 4, + [71566] = 3, + ACTIONS(4061), 1, + sym_comment, + STATE(1854), 1, + aux_sym_char_literal_repeat1, + ACTIONS(5205), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [71577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(3721), 1, anon_sym_COMMA, - ACTIONS(4664), 1, - anon_sym_SEMI, - STATE(1642), 1, - aux_sym_declaration_repeat1, - [63064] = 4, + ACTIONS(5207), 1, + anon_sym_RPAREN, + STATE(1868), 1, + aux_sym__attribute_argument_list_repeat1, + [71590] = 3, + ACTIONS(4061), 1, + sym_comment, + STATE(1846), 1, + aux_sym_char_literal_repeat1, + ACTIONS(5209), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [71601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4666), 1, + ACTIONS(5211), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [63077] = 4, + [71614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4668), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63090] = 4, + ACTIONS(5213), 1, + anon_sym_RPAREN, + ACTIONS(5215), 1, + anon_sym_COLON, + STATE(1870), 1, + sym_gnu_asm_input_operand_list, + [71627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4670), 1, + ACTIONS(5217), 1, anon_sym_SEMI, - STATE(1643), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [63103] = 4, + [71640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(5219), 1, anon_sym_COMMA, - ACTIONS(4672), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63116] = 4, + ACTIONS(5222), 1, + anon_sym_RPAREN, + STATE(1914), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [71653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(5224), 1, anon_sym_COMMA, - ACTIONS(4674), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63129] = 4, + ACTIONS(5227), 1, + anon_sym_RBRACK_RBRACK, + STATE(1915), 1, + aux_sym_attribute_declaration_repeat1, + [71666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4676), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63142] = 4, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(5229), 1, + sym_identifier, + STATE(962), 1, + sym_field_declaration_list, + [71679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4678), 1, - anon_sym_SEMI, - STATE(1647), 1, - aux_sym_declaration_repeat1, - [63155] = 4, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(5231), 1, + sym_identifier, + STATE(957), 1, + sym_field_declaration_list, + [71692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(3711), 1, anon_sym_COMMA, - ACTIONS(4680), 1, - anon_sym_SEMI, - STATE(1650), 1, - aux_sym_declaration_repeat1, - [63168] = 4, + ACTIONS(5233), 1, + anon_sym_RPAREN, + STATE(1961), 1, + aux_sym_generic_expression_repeat1, + [71705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4682), 1, + ACTIONS(5235), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1940), 1, aux_sym_declaration_repeat1, - [63181] = 4, + [71718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(5237), 3, anon_sym_COMMA, - ACTIONS(4684), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63194] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [71727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4686), 1, + ACTIONS(5239), 1, anon_sym_SEMI, - STATE(1651), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [63207] = 4, + [71740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4688), 1, + ACTIONS(5241), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [63220] = 4, + [71753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63233] = 4, + ACTIONS(5245), 1, + anon_sym_RBRACK_RBRACK, + STATE(1963), 1, + aux_sym_attribute_declaration_repeat1, + [71766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4692), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63246] = 3, - ACTIONS(3515), 1, + ACTIONS(5156), 1, + anon_sym_COLON, + ACTIONS(5247), 1, + anon_sym_RPAREN, + STATE(2124), 1, + sym_gnu_asm_goto_list, + [71779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5249), 1, + anon_sym_RPAREN, + ACTIONS(5251), 1, + anon_sym_COLON, + STATE(1912), 1, + sym_gnu_asm_output_operand_list, + [71792] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1553), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4694), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [63257] = 4, + ACTIONS(5126), 1, + anon_sym_COLON, + ACTIONS(5253), 1, + anon_sym_RPAREN, + STATE(1885), 1, + sym_gnu_asm_clobber_list, + [71805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(5255), 1, anon_sym_COMMA, - ACTIONS(4696), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63270] = 4, + ACTIONS(5258), 1, + anon_sym_RPAREN, + STATE(1927), 1, + aux_sym__old_style_parameter_list_repeat1, + [71818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, - anon_sym_LBRACE, - ACTIONS(4698), 1, - sym_identifier, - STATE(1069), 1, - sym_enumerator_list, - [63283] = 4, - ACTIONS(3515), 1, + ACTIONS(5260), 1, + anon_sym_COMMA, + ACTIONS(5262), 1, + anon_sym_RPAREN, + STATE(1927), 1, + aux_sym__old_style_parameter_list_repeat1, + [71831] = 4, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(5105), 1, anon_sym_LPAREN2, - ACTIONS(4700), 1, + ACTIONS(5264), 1, aux_sym_preproc_include_token2, - STATE(1802), 1, + STATE(2139), 1, sym_preproc_argument_list, - [63296] = 4, + [71844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4705), 1, - anon_sym_RBRACK_RBRACK, - STATE(1656), 1, - aux_sym_attribute_declaration_repeat1, - [63309] = 4, + ACTIONS(5266), 1, + anon_sym_SEMI, + STATE(1913), 1, + aux_sym_declaration_repeat1, + [71857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(5268), 3, anon_sym_COMMA, - ACTIONS(4707), 1, - anon_sym_RBRACK_RBRACK, - STATE(1656), 1, - aux_sym_attribute_declaration_repeat1, - [63322] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [71866] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(4063), 1, anon_sym_COMMA, - ACTIONS(3227), 1, + ACTIONS(5270), 1, anon_sym_RPAREN, - STATE(1617), 1, - aux_sym_argument_list_repeat1, - [63335] = 4, + STATE(1933), 1, + aux_sym_preproc_argument_list_repeat1, + [71879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4198), 1, + anon_sym_RPAREN, + ACTIONS(5272), 1, anon_sym_COMMA, - ACTIONS(4709), 1, - anon_sym_SEMI, - STATE(1663), 1, - aux_sym_declaration_repeat1, - [63348] = 4, + STATE(1933), 1, + aux_sym_preproc_argument_list_repeat1, + [71892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(5164), 1, anon_sym_COMMA, - ACTIONS(4711), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63361] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, + ACTIONS(5275), 1, anon_sym_RPAREN, - ACTIONS(4713), 1, - anon_sym_COMMA, - STATE(1661), 1, - aux_sym_argument_list_repeat1, - [63374] = 4, + STATE(1888), 1, + aux_sym_preproc_params_repeat1, + [71905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(5243), 1, anon_sym_COMMA, - ACTIONS(4716), 1, + ACTIONS(5277), 1, anon_sym_RBRACK_RBRACK, - STATE(1583), 1, + STATE(1949), 1, aux_sym_attribute_declaration_repeat1, - [63387] = 4, + [71918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4718), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63400] = 4, + ACTIONS(5281), 1, + anon_sym_RPAREN, + ACTIONS(5279), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [71929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5283), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [71938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(5285), 3, anon_sym_COMMA, - ACTIONS(4720), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_declaration_repeat1, - [63413] = 3, - ACTIONS(3515), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [71947] = 3, + ACTIONS(4061), 1, sym_comment, - STATE(1527), 1, + STATE(1852), 1, aux_sym_char_literal_repeat1, - ACTIONS(4722), 2, + ACTIONS(5287), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [63424] = 4, + [71958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4726), 1, - anon_sym_RPAREN, - STATE(1580), 1, - aux_sym__old_style_parameter_list_repeat1, - [63437] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - anon_sym_COLON, - ACTIONS(4728), 1, - anon_sym_RPAREN, - STATE(1683), 1, - sym_gnu_asm_clobber_list, - [63450] = 4, - ACTIONS(3), 1, + ACTIONS(5289), 1, + anon_sym_SEMI, + STATE(1953), 1, + aux_sym_declaration_repeat1, + [71971] = 4, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4730), 1, - anon_sym_COMMA, - ACTIONS(4733), 1, - anon_sym_RPAREN, - STATE(1668), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [63463] = 4, + ACTIONS(5105), 1, + anon_sym_LPAREN2, + ACTIONS(5291), 1, + aux_sym_preproc_include_token2, + STATE(2139), 1, + sym_preproc_argument_list, + [71984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(3221), 1, - anon_sym_RPAREN, - STATE(1572), 1, - aux_sym_argument_list_repeat1, - [63476] = 4, + ACTIONS(5293), 1, + anon_sym_SEMI, + STATE(1958), 1, + aux_sym_declaration_repeat1, + [71997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 1, + ACTIONS(3757), 1, anon_sym_RBRACE, - ACTIONS(4735), 1, + ACTIONS(5295), 1, anon_sym_COMMA, - STATE(1609), 1, + STATE(1943), 1, aux_sym_initializer_list_repeat1, - [63489] = 2, + [72010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 3, + ACTIONS(5298), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_COLON, - [63498] = 4, + [72019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3553), 1, - anon_sym_RPAREN, - ACTIONS(4737), 1, + ACTIONS(5158), 1, anon_sym_COMMA, - STATE(1672), 1, - aux_sym_preproc_argument_list_repeat1, - [63511] = 4, + ACTIONS(5300), 1, + anon_sym_RPAREN, + STATE(1886), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [72032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4740), 1, + ACTIONS(5302), 1, anon_sym_SEMI, - STATE(1653), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [63524] = 2, + [72045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4742), 3, + ACTIONS(5304), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [63533] = 3, + [72054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4744), 1, + ACTIONS(5306), 3, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(4050), 2, + anon_sym_DOT, + [72063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5243), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [63544] = 4, + ACTIONS(5308), 1, + anon_sym_RBRACK_RBRACK, + STATE(1915), 1, + aux_sym_attribute_declaration_repeat1, + [72076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(4063), 1, anon_sym_COMMA, - ACTIONS(4749), 1, + ACTIONS(5310), 1, anon_sym_RPAREN, - STATE(1676), 1, - aux_sym_parameter_list_repeat1, - [63557] = 2, + STATE(1933), 1, + aux_sym_preproc_argument_list_repeat1, + [72089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4751), 3, + ACTIONS(5312), 1, anon_sym_COMMA, + ACTIONS(5315), 1, anon_sym_RPAREN, - anon_sym_COLON, - [63566] = 4, + STATE(1951), 1, + aux_sym_preproc_params_repeat1, + [72102] = 4, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5105), 1, + anon_sym_LPAREN2, + ACTIONS(5317), 1, + aux_sym_preproc_include_token2, + STATE(2139), 1, + sym_preproc_argument_list, + [72115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4753), 1, + ACTIONS(5319), 1, anon_sym_COMMA, - ACTIONS(4756), 1, + ACTIONS(5322), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [63579] = 3, - ACTIONS(3515), 1, - sym_comment, - STATE(1564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4758), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [63590] = 2, + [72128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 3, + ACTIONS(2484), 1, + anon_sym_RBRACE, + ACTIONS(5324), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [63599] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2924), 1, - anon_sym_LBRACE, - ACTIONS(4762), 1, - sym_identifier, - STATE(853), 1, - sym_enumerator_list, - [63612] = 4, + STATE(1943), 1, + aux_sym_initializer_list_repeat1, + [72141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 1, - anon_sym_RPAREN, - ACTIONS(4766), 1, - anon_sym_COLON, - STATE(1961), 1, - sym_gnu_asm_goto_list, - [63625] = 4, + ACTIONS(4698), 1, + anon_sym_COMMA, + ACTIONS(5326), 1, + anon_sym_SEMI, + STATE(1889), 1, + aux_sym_declaration_repeat1, + [72154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, - anon_sym_COLON, - ACTIONS(4768), 1, - anon_sym_RPAREN, - STATE(1999), 1, - sym_gnu_asm_goto_list, - [63638] = 4, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4530), 1, - anon_sym_LPAREN2, - ACTIONS(4770), 1, - aux_sym_preproc_include_token2, - STATE(1802), 1, - sym_preproc_argument_list, - [63651] = 4, + ACTIONS(4698), 1, + anon_sym_COMMA, + ACTIONS(5328), 1, + anon_sym_SEMI, + STATE(1953), 1, + aux_sym_declaration_repeat1, + [72167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, + ACTIONS(5099), 1, anon_sym_COMMA, - ACTIONS(4772), 1, + ACTIONS(5330), 1, anon_sym_RPAREN, - STATE(1584), 1, - aux_sym_preproc_params_repeat1, - [63664] = 4, + STATE(1902), 1, + aux_sym_parameter_list_repeat1, + [72180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4774), 1, + ACTIONS(5332), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1953), 1, aux_sym_declaration_repeat1, - [63677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(506), 1, - anon_sym_LBRACE, - STATE(204), 1, - sym_compound_statement, - [63687] = 2, + [72193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 2, + ACTIONS(3705), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [63695] = 3, + ACTIONS(3709), 1, + anon_sym_RPAREN, + STATE(1901), 1, + aux_sym_argument_list_repeat1, + [72206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(381), 1, - sym_parenthesized_expression, - [63705] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4778), 1, - aux_sym_preproc_include_token2, - ACTIONS(4780), 1, - sym_preproc_arg, - [63715] = 2, + ACTIONS(5251), 1, + anon_sym_COLON, + ACTIONS(5334), 1, + anon_sym_RPAREN, + STATE(1964), 1, + sym_gnu_asm_output_operand_list, + [72219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 2, + ACTIONS(5336), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [63723] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4782), 1, - aux_sym_preproc_include_token2, - ACTIONS(4784), 1, - sym_preproc_arg, - [63733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1759), 1, - sym_parenthesized_expression, - [63743] = 3, + ACTIONS(5339), 1, + anon_sym_RPAREN, + STATE(1961), 1, + aux_sym_generic_expression_repeat1, + [72232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4788), 1, + ACTIONS(2249), 1, + anon_sym_LBRACE, + ACTIONS(5341), 1, sym_identifier, - STATE(1596), 1, - sym_attribute, - [63753] = 2, + STATE(1315), 1, + sym_enumerator_list, + [72245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(5243), 1, anon_sym_COMMA, + ACTIONS(5343), 1, + anon_sym_RBRACK_RBRACK, + STATE(1915), 1, + aux_sym_attribute_declaration_repeat1, + [72258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5215), 1, + anon_sym_COLON, + ACTIONS(5345), 1, anon_sym_RPAREN, - [63761] = 3, + STATE(1926), 1, + sym_gnu_asm_input_operand_list, + [72271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, + ACTIONS(3847), 1, + anon_sym_RPAREN, + ACTIONS(5347), 1, anon_sym_COMMA, - ACTIONS(4792), 1, - anon_sym_RBRACE, - [63771] = 3, + STATE(1965), 1, + aux_sym_argument_list_repeat1, + [72284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1544), 1, - sym_compound_statement, - [63781] = 3, + ACTIONS(3761), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [72292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, - anon_sym_LBRACE, - STATE(190), 1, - sym_compound_statement, - [63791] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4794), 1, - aux_sym_preproc_include_token2, - ACTIONS(4796), 1, - sym_preproc_arg, - [63801] = 3, - ACTIONS(3515), 1, + ACTIONS(5350), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [72300] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(5352), 1, aux_sym_preproc_include_token2, - ACTIONS(4800), 1, + ACTIONS(5354), 1, sym_preproc_arg, - [63811] = 3, + [72310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(176), 1, + STATE(281), 1, sym_compound_statement, - [63821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(355), 1, - sym_parenthesized_expression, - [63831] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4802), 1, - aux_sym_preproc_include_token2, - ACTIONS(4804), 1, - sym_preproc_arg, - [63841] = 3, + [72320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(133), 1, - anon_sym_LBRACE, - STATE(81), 1, - sym_compound_statement, - [63851] = 3, + ACTIONS(5258), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(133), 1, - anon_sym_LBRACE, - STATE(104), 1, - sym_compound_statement, - [63861] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4806), 1, - aux_sym_preproc_include_token2, - ACTIONS(4808), 1, - sym_preproc_arg, - [63871] = 3, - ACTIONS(3515), 1, + ACTIONS(2253), 1, + anon_sym_LPAREN2, + STATE(421), 1, + sym_parenthesized_expression, + [72338] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4810), 1, + ACTIONS(5356), 1, aux_sym_preproc_include_token2, - ACTIONS(4812), 1, + ACTIONS(5358), 1, sym_preproc_arg, - [63881] = 3, - ACTIONS(3515), 1, + [72348] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(5360), 1, aux_sym_preproc_include_token2, - ACTIONS(4816), 1, + ACTIONS(5362), 1, sym_preproc_arg, - [63891] = 3, - ACTIONS(3515), 1, + [72358] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4818), 1, - aux_sym_preproc_include_token2, - ACTIONS(4820), 1, - sym_preproc_arg, - [63901] = 3, + ACTIONS(5364), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, + ACTIONS(388), 1, anon_sym_LBRACE, - STATE(209), 1, + STATE(293), 1, sym_compound_statement, - [63911] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4822), 1, - aux_sym_preproc_include_token2, - ACTIONS(4824), 1, - sym_preproc_arg, - [63921] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4826), 1, - aux_sym_preproc_include_token2, - ACTIONS(4828), 1, - sym_preproc_arg, - [63931] = 2, + [72376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 2, + ACTIONS(4815), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [63939] = 2, + anon_sym_SEMI, + [72384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 2, + ACTIONS(5367), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [63947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LPAREN2, - STATE(1849), 1, - sym_argument_list, - [63957] = 3, + anon_sym_SEMI, + [72392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1959), 1, - sym_parenthesized_expression, - [63967] = 3, - ACTIONS(3515), 1, + ACTIONS(5369), 1, + sym_identifier, + STATE(1923), 1, + sym_attribute, + [72402] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(5371), 1, aux_sym_preproc_include_token2, - ACTIONS(4832), 1, + ACTIONS(5373), 1, sym_preproc_arg, - [63977] = 3, - ACTIONS(3515), 1, + [72412] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(5375), 1, aux_sym_preproc_include_token2, - ACTIONS(4836), 1, + ACTIONS(5377), 1, sym_preproc_arg, - [63987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4788), 1, - sym_identifier, - STATE(1662), 1, - sym_attribute, - [63997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(350), 1, - sym_parenthesized_expression, - [64007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1749), 1, - sym_parenthesized_expression, - [64017] = 3, + [72422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(351), 1, - sym_parenthesized_expression, - [64027] = 3, - ACTIONS(3515), 1, + ACTIONS(5379), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72430] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5381), 1, aux_sym_preproc_include_token2, - ACTIONS(4840), 1, + ACTIONS(5383), 1, sym_preproc_arg, - [64037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(368), 1, - sym_parenthesized_expression, - [64047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1546), 1, - sym_compound_statement, - [64057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(372), 1, - sym_parenthesized_expression, - [64067] = 2, + [72440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4842), 2, + ACTIONS(4833), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [64075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4788), 1, - sym_identifier, - STATE(1730), 1, - sym_attribute, - [64085] = 2, + anon_sym_SEMI, + [72448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 2, + ACTIONS(5385), 2, anon_sym_COMMA, - anon_sym_SEMI, - [64093] = 2, + anon_sym_RPAREN, + [72456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4705), 2, + ACTIONS(3755), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [64101] = 3, - ACTIONS(3515), 1, + anon_sym_RBRACE, + [72464] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4844), 1, + ACTIONS(5387), 1, aux_sym_preproc_include_token2, - ACTIONS(4846), 1, + ACTIONS(5389), 1, sym_preproc_arg, - [64111] = 3, + [72474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(378), 1, + ACTIONS(388), 1, anon_sym_LBRACE, - STATE(176), 1, + STATE(251), 1, sym_compound_statement, - [64121] = 2, + [72484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64129] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(289), 1, + sym_compound_statement, + [72494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 1, + ACTIONS(5391), 1, sym_identifier, - ACTIONS(4852), 1, - anon_sym_LPAREN2, - [64139] = 3, + ACTIONS(5393), 1, + anon_sym_RPAREN, + [72504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1930), 1, - sym_parenthesized_expression, - [64149] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(291), 1, + sym_compound_statement, + [72514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(334), 1, - sym_parenthesized_expression, - [64159] = 3, - ACTIONS(3), 1, + ACTIONS(5369), 1, + sym_identifier, + STATE(1935), 1, + sym_attribute, + [72524] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1732), 1, - sym_parenthesized_expression, - [64169] = 3, + ACTIONS(5395), 1, + aux_sym_preproc_include_token2, + ACTIONS(5397), 1, + sym_preproc_arg, + [72534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(2276), 1, anon_sym_LPAREN2, - STATE(1701), 1, + STATE(2241), 1, sym_parenthesized_expression, - [64179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(378), 1, - anon_sym_LBRACE, - STATE(207), 1, - sym_compound_statement, - [64189] = 2, + [72544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 2, + ACTIONS(3757), 2, anon_sym_COMMA, - anon_sym_SEMI, - [64197] = 3, + anon_sym_RBRACE, + [72552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - STATE(239), 1, + STATE(152), 1, sym_compound_statement, - [64207] = 3, - ACTIONS(3), 1, + [72562] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(328), 1, - sym_parenthesized_expression, - [64217] = 2, + ACTIONS(5399), 1, + aux_sym_preproc_include_token2, + ACTIONS(5401), 1, + sym_preproc_arg, + [72572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 2, + ACTIONS(3813), 2, anon_sym_COMMA, anon_sym_RPAREN, - [64225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4788), 1, - sym_identifier, - STATE(1581), 1, - sym_attribute, - [64235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(363), 1, - sym_parenthesized_expression, - [64245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1757), 1, - sym_parenthesized_expression, - [64255] = 3, + [72580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(2276), 1, anon_sym_LPAREN2, - STATE(364), 1, + STATE(2092), 1, sym_parenthesized_expression, - [64265] = 2, + [72590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4854), 2, + ACTIONS(3847), 2, anon_sym_COMMA, anon_sym_RPAREN, - [64273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(378), 1, - anon_sym_LBRACE, - STATE(173), 1, - sym_compound_statement, - [64283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_compound_statement, - [64293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4857), 1, - sym_identifier, - ACTIONS(4859), 1, - anon_sym_LPAREN2, - [64303] = 3, + [72598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(2276), 1, anon_sym_LPAREN2, - STATE(1944), 1, + STATE(1988), 1, sym_parenthesized_expression, - [64313] = 3, + [72608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1767), 1, - sym_parenthesized_expression, - [64323] = 3, + ACTIONS(5403), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(2253), 1, anon_sym_LPAREN2, - STATE(1698), 1, + STATE(450), 1, sym_parenthesized_expression, - [64333] = 3, - ACTIONS(3515), 1, + [72626] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4861), 1, + ACTIONS(5405), 1, aux_sym_preproc_include_token2, - ACTIONS(4863), 1, + ACTIONS(5407), 1, sym_preproc_arg, - [64343] = 2, - ACTIONS(3), 1, + [72636] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4865), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [64351] = 3, + ACTIONS(5409), 1, + aux_sym_preproc_include_token2, + ACTIONS(5411), 1, + sym_preproc_arg, + [72646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(133), 1, + ACTIONS(440), 1, anon_sym_LBRACE, - STATE(116), 1, + STATE(230), 1, sym_compound_statement, - [64361] = 3, + [72656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym_compound_statement, - [64371] = 3, + ACTIONS(5315), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72664] = 3, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5413), 1, + aux_sym_preproc_include_token2, + ACTIONS(5415), 1, + sym_preproc_arg, + [72674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(440), 1, anon_sym_LBRACE, - STATE(220), 1, + STATE(241), 1, sym_compound_statement, - [64381] = 3, + [72684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN2, - STATE(1990), 1, - sym_parenthesized_expression, - [64391] = 2, + ACTIONS(5227), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [72692] = 3, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5417), 1, + aux_sym_preproc_include_token2, + ACTIONS(5419), 1, + sym_preproc_arg, + [72702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 2, + ACTIONS(3841), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [64399] = 3, + anon_sym_SEMI, + [72710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(2276), 1, anon_sym_LPAREN2, - STATE(1705), 1, + STATE(2118), 1, sym_parenthesized_expression, - [64409] = 3, + [72720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(2276), 1, anon_sym_LPAREN2, - STATE(1710), 1, + STATE(2033), 1, sym_parenthesized_expression, - [64419] = 3, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4869), 1, - aux_sym_preproc_include_token2, - ACTIONS(4871), 1, - sym_preproc_arg, - [64429] = 3, + [72730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(207), 1, - sym_compound_statement, - [64439] = 3, + ACTIONS(2276), 1, + anon_sym_LPAREN2, + STATE(1975), 1, + sym_parenthesized_expression, + [72740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1542), 1, - sym_compound_statement, - [64449] = 3, + ACTIONS(2276), 1, + anon_sym_LPAREN2, + STATE(2026), 1, + sym_parenthesized_expression, + [72750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(139), 1, anon_sym_LBRACE, - STATE(155), 1, + STATE(143), 1, sym_compound_statement, - [64459] = 3, + [72760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3819), 1, + ACTIONS(4418), 1, anon_sym_RBRACE, - ACTIONS(4790), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - [64469] = 2, + [72770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64477] = 2, + ACTIONS(388), 1, + anon_sym_LBRACE, + STATE(291), 1, + sym_compound_statement, + [72780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [64485] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(217), 1, + sym_compound_statement, + [72790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, - sym_identifier, - ACTIONS(4877), 1, - anon_sym_RPAREN, - [64495] = 2, - ACTIONS(3), 1, + ACTIONS(2253), 1, + anon_sym_LPAREN2, + STATE(445), 1, + sym_parenthesized_expression, + [72800] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4222), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [64503] = 3, + ACTIONS(5423), 1, + aux_sym_preproc_include_token2, + ACTIONS(5425), 1, + sym_preproc_arg, + [72810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(5427), 1, anon_sym_LPAREN2, - STATE(1841), 1, - sym_argument_list, - [64513] = 2, + STATE(2243), 1, + sym__attribute_argument_list, + [72820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 2, + ACTIONS(5195), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [64521] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [72828] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4881), 1, - aux_sym_preproc_if_token2, - [64528] = 2, + ACTIONS(5429), 1, + aux_sym_preproc_include_token2, + ACTIONS(5431), 1, + sym_preproc_arg, + [72838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - aux_sym_preproc_if_token2, - [64535] = 2, + ACTIONS(5421), 1, + anon_sym_COMMA, + ACTIONS(5433), 1, + anon_sym_RBRACE, + [72848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - aux_sym_preproc_if_token2, - [64542] = 2, + ACTIONS(440), 1, + anon_sym_LBRACE, + STATE(246), 1, + sym_compound_statement, + [72858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(2276), 1, anon_sym_LPAREN2, - [64549] = 2, + STATE(2120), 1, + sym_parenthesized_expression, + [72868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - aux_sym_preproc_if_token2, - [64556] = 2, + ACTIONS(5435), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [72876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4891), 1, - anon_sym_COLON, - [64563] = 2, + ACTIONS(2253), 1, + anon_sym_LPAREN2, + STATE(417), 1, + sym_parenthesized_expression, + [72886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, - anon_sym_RBRACE, - [64570] = 2, + ACTIONS(5437), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [72894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - aux_sym_preproc_if_token2, - [64577] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4897), 1, - aux_sym_preproc_include_token2, - [64584] = 2, - ACTIONS(3515), 1, + ACTIONS(5369), 1, + sym_identifier, + STATE(2009), 1, + sym_attribute, + [72904] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4899), 1, + ACTIONS(5439), 1, aux_sym_preproc_include_token2, - [64591] = 2, + ACTIONS(5441), 1, + sym_preproc_arg, + [72914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 1, - sym_identifier, - [64598] = 2, - ACTIONS(3515), 1, + ACTIONS(139), 1, + anon_sym_LBRACE, + STATE(144), 1, + sym_compound_statement, + [72924] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4903), 1, - aux_sym_preproc_include_token2, - [64605] = 2, - ACTIONS(3515), 1, + ACTIONS(2276), 1, + anon_sym_LPAREN2, + STATE(2036), 1, + sym_parenthesized_expression, + [72934] = 3, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4905), 1, + ACTIONS(5443), 1, aux_sym_preproc_include_token2, - [64612] = 2, + ACTIONS(5445), 1, + sym_preproc_arg, + [72944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4907), 1, - aux_sym_preproc_if_token2, - [64619] = 2, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(293), 1, + sym_compound_statement, + [72954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 1, - anon_sym_RPAREN, - [64626] = 2, + ACTIONS(5447), 1, + anon_sym_RBRACE, + [72961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4911), 1, - anon_sym_RPAREN, - [64633] = 2, + ACTIONS(5449), 1, + aux_sym_preproc_if_token2, + [72968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4913), 1, + ACTIONS(5451), 1, anon_sym_SEMI, - [64640] = 2, + [72975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, - aux_sym_preproc_if_token2, - [64647] = 2, + ACTIONS(5453), 1, + anon_sym_COLON, + [72982] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5455), 1, + aux_sym_preproc_include_token2, + [72989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 1, + ACTIONS(5457), 1, aux_sym_preproc_if_token2, - [64654] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4919), 1, - aux_sym_preproc_include_token2, - [64661] = 2, + [72996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3865), 1, anon_sym_SEMI, - [64668] = 2, + [73003] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5459), 1, + aux_sym_preproc_include_token2, + [73010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4921), 1, + ACTIONS(5461), 1, anon_sym_RPAREN, - [64675] = 2, + [73017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, + ACTIONS(5463), 1, aux_sym_preproc_if_token2, - [64682] = 2, + [73024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, - anon_sym_COLON, - [64689] = 2, + ACTIONS(5465), 1, + aux_sym_preproc_if_token2, + [73031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, - sym_identifier, - [64696] = 2, - ACTIONS(3193), 1, - aux_sym_preproc_include_token2, - ACTIONS(3515), 1, - sym_comment, - [64703] = 2, + ACTIONS(5467), 1, + aux_sym_preproc_if_token2, + [73038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 1, - anon_sym_SEMI, - [64710] = 2, - ACTIONS(3203), 1, - aux_sym_preproc_include_token2, - ACTIONS(3515), 1, - sym_comment, - [64717] = 2, - ACTIONS(3515), 1, + ACTIONS(5469), 1, + ts_builtin_sym_end, + [73045] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(5471), 1, aux_sym_preproc_include_token2, - [64724] = 2, + [73052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, + ACTIONS(5473), 1, aux_sym_preproc_if_token2, - [64731] = 2, + [73059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 1, - aux_sym_preproc_if_token2, - [64738] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4937), 1, - aux_sym_preproc_include_token2, - [64745] = 2, + ACTIONS(5475), 1, + anon_sym_RPAREN, + [73066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 1, - anon_sym_SEMI, - [64752] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4941), 1, - aux_sym_preproc_include_token2, - [64759] = 2, + ACTIONS(5477), 1, + anon_sym_RPAREN, + [73073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 1, - anon_sym_COLON, - [64766] = 2, + ACTIONS(5479), 1, + aux_sym_preproc_if_token2, + [73080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4945), 1, - anon_sym_STAR, - [64773] = 2, + ACTIONS(5481), 1, + aux_sym_preproc_if_token2, + [73087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 1, - anon_sym_RPAREN, - [64780] = 2, - ACTIONS(3515), 1, + ACTIONS(3839), 1, + anon_sym_COLON, + [73094] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(4949), 1, + ACTIONS(5483), 1, aux_sym_preproc_include_token2, - [64787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4951), 1, - aux_sym_preproc_if_token2, - [64794] = 2, + [73101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4953), 1, + ACTIONS(3843), 1, anon_sym_SEMI, - [64801] = 2, + [73108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(5485), 1, anon_sym_RPAREN, - [64808] = 2, + [73115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4957), 1, - anon_sym_RPAREN, - [64815] = 2, - ACTIONS(3515), 1, + ACTIONS(5487), 1, + sym_identifier, + [73122] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4620), 1, - aux_sym_preproc_include_token2, - [64822] = 2, + ACTIONS(5489), 1, + anon_sym_STAR, + [73129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_preproc_if_token2, - [64829] = 2, - ACTIONS(3515), 1, + ACTIONS(5491), 1, + anon_sym_COLON, + [73136] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4961), 1, - aux_sym_preproc_include_token2, - [64836] = 2, - ACTIONS(3515), 1, + ACTIONS(5493), 1, + aux_sym_preproc_if_token2, + [73143] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, - aux_sym_preproc_include_token2, - [64843] = 2, + ACTIONS(5495), 1, + anon_sym_RPAREN, + [73150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 1, + ACTIONS(5497), 1, sym_identifier, - [64850] = 2, - ACTIONS(3515), 1, + [73157] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4967), 1, + ACTIONS(5499), 1, + aux_sym_preproc_if_token2, + [73164] = 2, + ACTIONS(3617), 1, aux_sym_preproc_include_token2, - [64857] = 2, + ACTIONS(4061), 1, + sym_comment, + [73171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 1, + ACTIONS(5501), 1, anon_sym_RPAREN, - [64864] = 2, + [73178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4971), 1, - sym_identifier, - [64871] = 2, + ACTIONS(5503), 1, + anon_sym_RPAREN, + [73185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 1, - sym_identifier, - [64878] = 2, + ACTIONS(5505), 1, + anon_sym_RPAREN, + [73192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 1, + ACTIONS(5507), 1, anon_sym_RPAREN, - [64885] = 2, - ACTIONS(2276), 1, - aux_sym_preproc_include_token2, - ACTIONS(3515), 1, - sym_comment, - [64892] = 2, + [73199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - [64899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4977), 1, - aux_sym_preproc_if_token2, - [64906] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4979), 1, - aux_sym_preproc_include_token2, - [64913] = 2, + [73206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 1, - aux_sym_preproc_if_token2, - [64920] = 2, + ACTIONS(5509), 1, + anon_sym_RPAREN, + [73213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 1, + ACTIONS(5511), 1, anon_sym_RPAREN, - [64927] = 2, + [73220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 1, + ACTIONS(5513), 1, sym_identifier, - [64934] = 2, + [73227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - anon_sym_COLON, - [64941] = 2, + ACTIONS(5515), 1, + sym_identifier, + [73234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4987), 1, - aux_sym_preproc_if_token2, - [64948] = 2, + ACTIONS(5517), 1, + sym_identifier, + [73241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4989), 1, + ACTIONS(5519), 1, aux_sym_preproc_if_token2, - [64955] = 2, + [73248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3293), 1, - anon_sym_SEMI, - [64962] = 2, + ACTIONS(5521), 1, + anon_sym_RPAREN, + [73255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 1, + ACTIONS(5523), 1, anon_sym_RPAREN, - [64969] = 2, + [73262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4993), 1, + ACTIONS(5525), 1, anon_sym_RPAREN, - [64976] = 2, + [73269] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5527), 1, + aux_sym_preproc_include_token2, + [73276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 1, - anon_sym_RPAREN, - [64983] = 2, + ACTIONS(5529), 1, + anon_sym_COMMA, + [73283] = 2, + ACTIONS(3627), 1, + aux_sym_preproc_include_token2, + ACTIONS(4061), 1, + sym_comment, + [73290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4995), 1, - anon_sym_STAR, - [64990] = 2, + ACTIONS(5531), 1, + anon_sym_RBRACK, + [73297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 1, - anon_sym_while, - [64997] = 2, + ACTIONS(5533), 1, + anon_sym_SEMI, + [73304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_LPAREN2, - [65004] = 2, - ACTIONS(3515), 1, + ACTIONS(5535), 1, + sym_identifier, + [73311] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 1, - aux_sym_preproc_include_token2, - [65011] = 2, + ACTIONS(5537), 1, + sym_identifier, + [73318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 1, + ACTIONS(5539), 1, anon_sym_RPAREN, - [65018] = 2, + [73325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5005), 1, + ACTIONS(5541), 1, aux_sym_preproc_if_token2, - [65025] = 2, + [73332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5007), 1, - anon_sym_COLON, - [65032] = 2, + ACTIONS(5543), 1, + aux_sym_preproc_if_token2, + [73339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, + ACTIONS(5545), 1, anon_sym_SEMI, - [65039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5011), 1, - anon_sym_RPAREN, - [65046] = 2, + [73346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5013), 1, - anon_sym_COLON, - [65053] = 2, + ACTIONS(5547), 1, + aux_sym_preproc_if_token2, + [73353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5015), 1, - anon_sym_SEMI, - [65060] = 2, + ACTIONS(5549), 1, + anon_sym_RPAREN, + [73360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5017), 1, - sym_identifier, - [65067] = 2, + ACTIONS(4418), 1, + anon_sym_RBRACE, + [73367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 1, - anon_sym_LPAREN2, - [65074] = 2, + ACTIONS(3765), 1, + anon_sym_RPAREN, + [73374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 1, - anon_sym_SEMI, - [65081] = 2, + ACTIONS(5551), 1, + aux_sym_preproc_if_token2, + [73381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5023), 1, - sym_identifier, - [65088] = 2, - ACTIONS(3), 1, + ACTIONS(3829), 1, + anon_sym_COLON, + [73388] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(5025), 1, - anon_sym_RPAREN, - [65095] = 2, + ACTIONS(5553), 1, + aux_sym_preproc_include_token2, + [73395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, + ACTIONS(3799), 1, anon_sym_RPAREN, - [65102] = 2, + [73402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3281), 1, - anon_sym_SEMI, - [65109] = 2, + ACTIONS(5555), 1, + aux_sym_preproc_if_token2, + [73409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_RBRACE, - [65116] = 2, + ACTIONS(5557), 1, + aux_sym_preproc_if_token2, + [73416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(5559), 1, anon_sym_RPAREN, - [65123] = 2, - ACTIONS(3515), 1, + [73423] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, - aux_sym_preproc_include_token2, - [65130] = 2, + ACTIONS(5561), 1, + sym_identifier, + [73430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4792), 1, - anon_sym_RBRACE, - [65137] = 2, + ACTIONS(3801), 1, + anon_sym_RPAREN, + [73437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5029), 1, - anon_sym_SEMI, - [65144] = 2, + ACTIONS(5563), 1, + aux_sym_preproc_if_token2, + [73444] = 2, + ACTIONS(3623), 1, + aux_sym_preproc_include_token2, + ACTIONS(4061), 1, + sym_comment, + [73451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 1, - anon_sym_LPAREN2, - [65151] = 2, + ACTIONS(5565), 1, + anon_sym_RPAREN, + [73458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5033), 1, + ACTIONS(5567), 1, aux_sym_preproc_if_token2, - [65158] = 2, + [73465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 1, - anon_sym_RBRACE, - [65165] = 2, - ACTIONS(3), 1, + ACTIONS(5569), 1, + anon_sym_LPAREN2, + [73472] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(5037), 1, - sym_identifier, - [65172] = 2, - ACTIONS(2260), 1, + ACTIONS(5571), 1, aux_sym_preproc_include_token2, - ACTIONS(3515), 1, - sym_comment, - [65179] = 2, + [73479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 1, + ACTIONS(5573), 1, sym_identifier, - [65186] = 2, + [73486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 1, - aux_sym_preproc_if_token2, - [65193] = 2, + ACTIONS(5575), 1, + anon_sym_RBRACK, + [73493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 1, - anon_sym_SEMI, - [65200] = 2, + ACTIONS(5577), 1, + sym_identifier, + [73500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5043), 1, + ACTIONS(5579), 1, sym_identifier, - [65207] = 2, + [73507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5045), 1, - anon_sym_SEMI, - [65214] = 2, + ACTIONS(3815), 1, + anon_sym_COLON, + [73514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5047), 1, + ACTIONS(5581), 1, anon_sym_RPAREN, - [65221] = 2, + [73521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5049), 1, - anon_sym_RPAREN, - [65228] = 2, + ACTIONS(5583), 1, + anon_sym_SEMI, + [73528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5051), 1, + ACTIONS(5585), 1, aux_sym_preproc_if_token2, - [65235] = 2, + [73535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5053), 1, + ACTIONS(5587), 1, + anon_sym_SEMI, + [73542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5589), 1, sym_identifier, - [65242] = 2, + [73549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, - anon_sym_COLON, - [65249] = 2, - ACTIONS(3515), 1, + ACTIONS(5591), 1, + sym_identifier, + [73556] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, - aux_sym_preproc_include_token2, - [65256] = 2, + ACTIONS(5593), 1, + aux_sym_preproc_if_token2, + [73563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5057), 1, + ACTIONS(5595), 1, anon_sym_RPAREN, - [65263] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(5059), 1, - aux_sym_preproc_include_token2, - [65270] = 2, - ACTIONS(3515), 1, + [73570] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(5061), 1, + ACTIONS(5597), 1, aux_sym_preproc_include_token2, - [65277] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_COLON, - [65284] = 2, + [73577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_RPAREN, - [65291] = 2, + ACTIONS(5599), 1, + anon_sym_LPAREN2, + [73584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(5433), 1, anon_sym_RBRACE, - [65298] = 2, + [73591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, - anon_sym_SEMI, - [65305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5065), 1, - aux_sym_preproc_if_token2, - [65312] = 2, + ACTIONS(5601), 1, + anon_sym_while, + [73598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, + ACTIONS(5101), 1, anon_sym_RPAREN, - [65319] = 2, + [73605] = 2, + ACTIONS(2748), 1, + aux_sym_preproc_include_token2, + ACTIONS(4061), 1, + sym_comment, + [73612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5069), 1, - sym_identifier, - [65326] = 2, + ACTIONS(5603), 1, + aux_sym_preproc_if_token2, + [73619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - sym_identifier, - [65333] = 2, + ACTIONS(5605), 1, + aux_sym_preproc_if_token2, + [73626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 1, + ACTIONS(5607), 1, aux_sym_preproc_if_token2, - [65340] = 2, + [73633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5075), 1, - anon_sym_LPAREN2, - [65347] = 2, + ACTIONS(5609), 1, + anon_sym_COLON, + [73640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 1, - aux_sym_preproc_if_token2, - [65354] = 2, + ACTIONS(3853), 1, + anon_sym_COLON, + [73647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5079), 1, - aux_sym_preproc_if_token2, - [65361] = 2, + ACTIONS(3701), 1, + anon_sym_RBRACE, + [73654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(5611), 1, sym_identifier, - [65368] = 2, + [73661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 1, - aux_sym_preproc_if_token2, - [65375] = 2, - ACTIONS(3), 1, + ACTIONS(5613), 1, + anon_sym_RPAREN, + [73668] = 2, + ACTIONS(3631), 1, + aux_sym_preproc_include_token2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(5085), 1, - aux_sym_preproc_if_token2, - [65382] = 2, - ACTIONS(3515), 1, + [73675] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(5087), 1, + ACTIONS(5103), 1, aux_sym_preproc_include_token2, - [65389] = 2, + [73682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 1, - aux_sym_preproc_if_token2, - [65396] = 2, + ACTIONS(5615), 1, + anon_sym_SEMI, + [73689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, - anon_sym_COMMA, - [65403] = 2, - ACTIONS(3), 1, + ACTIONS(5617), 1, + aux_sym_preproc_if_token2, + [73696] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(5091), 1, - sym_primitive_type, - [65410] = 2, + ACTIONS(5264), 1, + aux_sym_preproc_include_token2, + [73703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 1, + ACTIONS(3831), 1, anon_sym_SEMI, - [65417] = 2, + [73710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5095), 1, + ACTIONS(5619), 1, aux_sym_preproc_if_token2, - [65424] = 2, + [73717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 1, + ACTIONS(5621), 1, sym_identifier, - [65431] = 2, + [73724] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5623), 1, + aux_sym_preproc_include_token2, + [73731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, - anon_sym_COMMA, - [65438] = 2, + ACTIONS(3861), 1, + anon_sym_RPAREN, + [73738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_SEMI, - [65445] = 2, + ACTIONS(5625), 1, + aux_sym_preproc_if_token2, + [73745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5099), 1, + ACTIONS(5627), 1, aux_sym_preproc_if_token2, - [65452] = 2, + [73752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, - anon_sym_SEMI, - [65459] = 2, + ACTIONS(5629), 1, + anon_sym_RPAREN, + [73759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 1, - anon_sym_SEMI, - [65466] = 2, + ACTIONS(5631), 1, + anon_sym_RPAREN, + [73766] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5633), 1, + aux_sym_preproc_include_token2, + [73773] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5635), 1, + aux_sym_preproc_include_token2, + [73780] = 2, + ACTIONS(2720), 1, + aux_sym_preproc_include_token2, + ACTIONS(4061), 1, + sym_comment, + [73787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym_SEMI, - [65473] = 2, + ACTIONS(5637), 1, + anon_sym_RPAREN, + [73794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3849), 1, anon_sym_COLON, - [65480] = 2, + [73801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 1, + ACTIONS(5639), 1, anon_sym_RBRACE, - [65487] = 2, + [73808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(5641), 1, anon_sym_SEMI, - [65494] = 2, + [73815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - sym_identifier, - [65501] = 2, + ACTIONS(3753), 1, + anon_sym_SEMI, + [73822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 1, - sym_identifier, - [65508] = 2, + ACTIONS(5643), 1, + anon_sym_RBRACE, + [73829] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5645), 1, + aux_sym_preproc_include_token2, + [73836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5111), 1, - sym_identifier, - [65515] = 2, + ACTIONS(3851), 1, + anon_sym_COLON, + [73843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, + ACTIONS(5647), 1, aux_sym_preproc_if_token2, - [65522] = 2, + [73850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5115), 1, - anon_sym_SEMI, - [65529] = 2, + ACTIONS(5649), 1, + aux_sym_preproc_if_token2, + [73857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5117), 1, - aux_sym_preproc_if_token2, - [65536] = 2, + ACTIONS(5651), 1, + sym_identifier, + [73864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5119), 1, + ACTIONS(5653), 1, sym_identifier, - [65543] = 2, + [73871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5121), 1, + ACTIONS(5655), 1, anon_sym_SEMI, - [65550] = 2, + [73878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 1, - anon_sym_RPAREN, - [65557] = 2, + ACTIONS(5657), 1, + aux_sym_preproc_if_token2, + [73885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5123), 1, - sym_identifier, - [65564] = 2, + ACTIONS(5659), 1, + aux_sym_preproc_if_token2, + [73892] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5661), 1, + aux_sym_preproc_include_token2, + [73899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5125), 1, - aux_sym_preproc_if_token2, - [65571] = 2, + ACTIONS(5663), 1, + anon_sym_STAR, + [73906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_RPAREN, - [65578] = 2, + ACTIONS(5665), 1, + anon_sym_RBRACE, + [73913] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5667), 1, + aux_sym_preproc_include_token2, + [73920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5127), 1, - aux_sym_preproc_if_token2, - [65585] = 2, + ACTIONS(3759), 1, + anon_sym_SEMI, + [73927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, - aux_sym_preproc_if_token2, - [65592] = 2, + ACTIONS(5669), 1, + anon_sym_SEMI, + [73934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5131), 1, + ACTIONS(5671), 1, anon_sym_RPAREN, - [65599] = 2, + [73941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5133), 1, - anon_sym_SEMI, - [65606] = 2, + ACTIONS(5673), 1, + anon_sym_RPAREN, + [73948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, - anon_sym_SEMI, - [65613] = 2, - ACTIONS(3), 1, + ACTIONS(5675), 1, + anon_sym_RPAREN, + [73955] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(5137), 1, - sym_identifier, - [65620] = 2, + ACTIONS(5291), 1, + aux_sym_preproc_include_token2, + [73962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5139), 1, - sym_identifier, - [65627] = 2, + ACTIONS(5677), 1, + anon_sym_RPAREN, + [73969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_SEMI, - [65634] = 2, + ACTIONS(3791), 1, + anon_sym_COLON, + [73976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, + ACTIONS(5679), 1, aux_sym_preproc_if_token2, - [65641] = 2, + [73983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 1, + ACTIONS(5681), 1, sym_identifier, - [65648] = 2, + [73990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 1, + ACTIONS(5683), 1, aux_sym_preproc_if_token2, - [65655] = 2, + [73997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5149), 1, + ACTIONS(5685), 1, anon_sym_RPAREN, - [65662] = 2, + [74004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_RPAREN, - [65669] = 2, + ACTIONS(5687), 1, + anon_sym_SEMI, + [74011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 1, - anon_sym_SEMI, - [65676] = 2, + ACTIONS(5689), 1, + anon_sym_RPAREN, + [74018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 1, - sym_identifier, - [65683] = 2, + ACTIONS(5691), 1, + aux_sym_preproc_if_token2, + [74025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 1, - anon_sym_SEMI, - [65690] = 2, - ACTIONS(3189), 1, + ACTIONS(3833), 1, + anon_sym_COLON, + [74032] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5693), 1, aux_sym_preproc_include_token2, - ACTIONS(3515), 1, + [74039] = 2, + ACTIONS(4061), 1, sym_comment, - [65697] = 2, + ACTIONS(5695), 1, + aux_sym_preproc_include_token2, + [74046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5155), 1, - anon_sym_RBRACK, - [65704] = 2, + ACTIONS(5697), 1, + anon_sym_RPAREN, + [74053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 1, + ACTIONS(3823), 1, anon_sym_SEMI, - [65711] = 2, + [74060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5159), 1, + ACTIONS(5699), 1, sym_identifier, - [65718] = 2, + [74067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 1, + ACTIONS(5701), 1, sym_identifier, - [65725] = 2, - ACTIONS(3), 1, + [74074] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(5163), 1, - aux_sym_preproc_if_token2, - [65732] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(5165), 1, + ACTIONS(5703), 1, aux_sym_preproc_include_token2, - [65739] = 2, + [74081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 1, - anon_sym_RBRACE, - [65746] = 2, + ACTIONS(5705), 1, + anon_sym_STAR, + [74088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, - anon_sym_SEMI, - [65753] = 2, + ACTIONS(5707), 1, + sym_primitive_type, + [74095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - sym_identifier, - [65760] = 2, + ACTIONS(5709), 1, + aux_sym_preproc_if_token2, + [74102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5171), 1, + ACTIONS(5711), 1, anon_sym_LPAREN2, - [65767] = 2, + [74109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5173), 1, - anon_sym_STAR, - [65774] = 2, + ACTIONS(5713), 1, + anon_sym_RPAREN, + [74116] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5715), 1, + aux_sym_preproc_include_token2, + [74123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 1, - aux_sym_preproc_if_token2, - [65781] = 2, - ACTIONS(3515), 1, + ACTIONS(5717), 1, + anon_sym_RPAREN, + [74130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5719), 1, + anon_sym_RPAREN, + [74137] = 2, + ACTIONS(4061), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5317), 1, aux_sym_preproc_include_token2, - [65788] = 2, + [74144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 1, + ACTIONS(5721), 1, sym_identifier, - [65795] = 2, + [74151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, - anon_sym_RPAREN, - [65802] = 2, + ACTIONS(5723), 1, + aux_sym_preproc_if_token2, + [74158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5181), 1, - aux_sym_preproc_if_token2, - [65809] = 2, + ACTIONS(3803), 1, + anon_sym_RPAREN, + [74165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5183), 1, - anon_sym_SEMI, - [65816] = 2, + ACTIONS(3931), 1, + anon_sym_RPAREN, + [74172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5185), 1, - sym_primitive_type, - [65823] = 2, + ACTIONS(3825), 1, + anon_sym_SEMI, + [74179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5187), 1, - anon_sym_RPAREN, - [65830] = 2, + ACTIONS(5725), 1, + anon_sym_RBRACE, + [74186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5189), 1, + ACTIONS(5727), 1, aux_sym_preproc_if_token2, - [65837] = 2, + [74193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, - anon_sym_LPAREN2, - [65844] = 2, + ACTIONS(5729), 1, + aux_sym_preproc_if_token2, + [74200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(5731), 1, anon_sym_SEMI, - [65851] = 2, + [74207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, - anon_sym_SEMI, - [65858] = 2, + ACTIONS(5733), 1, + sym_identifier, + [74214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - sym_identifier, - [65865] = 2, + ACTIONS(3809), 1, + anon_sym_SEMI, + [74221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5195), 1, - anon_sym_STAR, - [65872] = 2, + ACTIONS(5735), 1, + sym_primitive_type, + [74228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5197), 1, - anon_sym_RPAREN, - [65879] = 2, + ACTIONS(5737), 1, + aux_sym_preproc_if_token2, + [74235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, - sym_identifier, - [65886] = 2, + ACTIONS(5739), 1, + anon_sym_COLON, + [74242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5201), 1, + ACTIONS(5741), 1, sym_identifier, - [65893] = 2, + [74249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5743), 1, sym_identifier, - [65900] = 2, + [74256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5205), 1, - aux_sym_preproc_if_token2, - [65907] = 2, + ACTIONS(3917), 1, + anon_sym_RPAREN, + [74263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, - anon_sym_RPAREN, - [65914] = 2, + ACTIONS(5745), 1, + anon_sym_STAR, + [74270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, - anon_sym_SEMI, - [65921] = 2, + ACTIONS(5747), 1, + sym_identifier, + [74277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5207), 1, - anon_sym_LPAREN2, - [65928] = 2, + ACTIONS(3845), 1, + anon_sym_RPAREN, + [74284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, + ACTIONS(5749), 1, aux_sym_preproc_if_token2, - [65935] = 2, + [74291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5211), 1, - anon_sym_LPAREN2, - [65942] = 2, + ACTIONS(3797), 1, + anon_sym_RPAREN, + [74298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 1, - anon_sym_LPAREN2, - [65949] = 2, + ACTIONS(5751), 1, + anon_sym_COLON, + [74305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, - anon_sym_COLON, - [65956] = 2, + ACTIONS(5753), 1, + anon_sym_RPAREN, + [74312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5215), 1, + ACTIONS(5755), 1, aux_sym_preproc_if_token2, - [65963] = 2, + [74319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 1, - ts_builtin_sym_end, - [65970] = 2, + ACTIONS(5757), 1, + anon_sym_RPAREN, + [74326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 1, - anon_sym_RBRACK, - [65977] = 2, + ACTIONS(5759), 1, + aux_sym_preproc_if_token2, + [74333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 1, - anon_sym_RPAREN, - [65984] = 2, + ACTIONS(3811), 1, + anon_sym_SEMI, + [74340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, + ACTIONS(5761), 1, anon_sym_SEMI, - [65991] = 2, + [74347] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5763), 1, + aux_sym_preproc_include_token2, + [74354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5225), 1, + ACTIONS(5765), 1, anon_sym_LPAREN2, - [65998] = 2, + [74361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 1, - aux_sym_preproc_if_token2, - [66005] = 2, + ACTIONS(5767), 1, + anon_sym_RPAREN, + [74368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 1, + ACTIONS(5769), 1, aux_sym_preproc_if_token2, - [66012] = 2, + [74375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 1, - anon_sym_while, - [66019] = 2, - ACTIONS(3515), 1, - sym_comment, - ACTIONS(4770), 1, - aux_sym_preproc_include_token2, - [66026] = 2, + ACTIONS(4718), 1, + anon_sym_COMMA, + [74382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 1, + ACTIONS(5771), 1, anon_sym_SEMI, - [66033] = 2, + [74389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - anon_sym_LPAREN2, - [66040] = 2, + ACTIONS(5773), 1, + aux_sym_preproc_if_token2, + [74396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5237), 1, - anon_sym_STAR, - [66047] = 2, + ACTIONS(5775), 1, + anon_sym_RPAREN, + [74403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, + ACTIONS(5777), 1, + anon_sym_while, + [74410] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5779), 1, aux_sym_preproc_if_token2, - [66054] = 2, + [74417] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5781), 1, + aux_sym_preproc_include_token2, + [74424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5241), 1, - anon_sym_RPAREN, - [66061] = 2, + ACTIONS(5783), 1, + anon_sym_STAR, + [74431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 1, - anon_sym_RPAREN, - [66068] = 2, + ACTIONS(5785), 1, + aux_sym_preproc_if_token2, + [74438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5245), 1, + ACTIONS(5787), 1, sym_identifier, - [66075] = 2, + [74445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, - anon_sym_COLON, - [66082] = 2, + ACTIONS(3859), 1, + anon_sym_SEMI, + [74452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 1, - anon_sym_COLON, - [66089] = 2, + ACTIONS(5789), 1, + aux_sym_preproc_if_token2, + [74459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5247), 1, + ACTIONS(5791), 1, anon_sym_RPAREN, - [66096] = 2, + [74466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 1, + ACTIONS(5793), 1, anon_sym_LPAREN2, - [66103] = 2, + [74473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5251), 1, - sym_identifier, - [66110] = 2, + ACTIONS(3805), 1, + anon_sym_RPAREN, + [74480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3283), 1, - anon_sym_RPAREN, - [66117] = 2, + ACTIONS(5795), 1, + sym_identifier, + [74487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 1, + ACTIONS(5797), 1, anon_sym_while, - [66124] = 2, + [74494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3819), 1, - anon_sym_RBRACE, - [66131] = 2, + ACTIONS(5799), 1, + anon_sym_RPAREN, + [74501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5255), 1, - aux_sym_preproc_if_token2, - [66138] = 2, - ACTIONS(3515), 1, + ACTIONS(5801), 1, + sym_identifier, + [74508] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 1, - aux_sym_preproc_include_token2, - [66145] = 2, + ACTIONS(5803), 1, + anon_sym_SEMI, + [74515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5259), 1, - anon_sym_RPAREN, - [66152] = 2, + ACTIONS(5805), 1, + aux_sym_preproc_if_token2, + [74522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 1, + ACTIONS(3807), 1, anon_sym_SEMI, - [66159] = 2, + [74529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, - aux_sym_preproc_if_token2, - [66166] = 2, + ACTIONS(5807), 1, + anon_sym_LPAREN2, + [74536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5265), 1, - anon_sym_RBRACE, - [66173] = 2, + ACTIONS(5809), 1, + anon_sym_RPAREN, + [74543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5811), 1, + anon_sym_COLON, + [74550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5267), 1, + ACTIONS(5813), 1, anon_sym_while, - [66180] = 2, + [74557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5269), 1, - aux_sym_preproc_if_token2, - [66187] = 2, - ACTIONS(3199), 1, - aux_sym_preproc_include_token2, - ACTIONS(3515), 1, + ACTIONS(3863), 1, + anon_sym_SEMI, + [74564] = 2, + ACTIONS(3), 1, sym_comment, - [66194] = 2, + ACTIONS(5815), 1, + anon_sym_RBRACE, + [74571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5271), 1, - anon_sym_SEMI, - [66201] = 2, + ACTIONS(3835), 1, + anon_sym_COLON, + [74578] = 2, + ACTIONS(4061), 1, + sym_comment, + ACTIONS(5817), 1, + aux_sym_preproc_include_token2, + [74585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5273), 1, + ACTIONS(5819), 1, aux_sym_preproc_if_token2, - [66208] = 2, + [74592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5275), 1, - anon_sym_LPAREN2, - [66215] = 2, + ACTIONS(5821), 1, + sym_identifier, + [74599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 1, - aux_sym_preproc_if_token2, - [66222] = 2, + ACTIONS(5823), 1, + sym_identifier, + [74606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5279), 1, - anon_sym_SEMI, - [66229] = 2, + ACTIONS(5825), 1, + sym_identifier, + [74613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, + ACTIONS(5827), 1, anon_sym_LPAREN2, - [66236] = 2, + [74620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5283), 1, - anon_sym_COLON, - [66243] = 2, - ACTIONS(3515), 1, + ACTIONS(5829), 1, + anon_sym_RPAREN, + [74627] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5285), 1, - aux_sym_preproc_include_token2, - [66250] = 2, + ACTIONS(5831), 1, + sym_identifier, + [74634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, - anon_sym_LPAREN2, + ACTIONS(5833), 1, + aux_sym_preproc_if_token2, + [74641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5835), 1, + aux_sym_preproc_if_token2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(463)] = 0, - [SMALL_STATE(464)] = 113, - [SMALL_STATE(465)] = 226, - [SMALL_STATE(466)] = 339, - [SMALL_STATE(467)] = 452, - [SMALL_STATE(468)] = 565, - [SMALL_STATE(469)] = 678, - [SMALL_STATE(470)] = 791, - [SMALL_STATE(471)] = 904, - [SMALL_STATE(472)] = 1017, - [SMALL_STATE(473)] = 1130, - [SMALL_STATE(474)] = 1243, - [SMALL_STATE(475)] = 1356, - [SMALL_STATE(476)] = 1469, - [SMALL_STATE(477)] = 1582, - [SMALL_STATE(478)] = 1695, - [SMALL_STATE(479)] = 1808, - [SMALL_STATE(480)] = 1921, - [SMALL_STATE(481)] = 2034, - [SMALL_STATE(482)] = 2147, - [SMALL_STATE(483)] = 2260, - [SMALL_STATE(484)] = 2373, - [SMALL_STATE(485)] = 2486, - [SMALL_STATE(486)] = 2599, - [SMALL_STATE(487)] = 2712, - [SMALL_STATE(488)] = 2825, - [SMALL_STATE(489)] = 2938, - [SMALL_STATE(490)] = 3051, - [SMALL_STATE(491)] = 3164, - [SMALL_STATE(492)] = 3277, - [SMALL_STATE(493)] = 3387, - [SMALL_STATE(494)] = 3497, - [SMALL_STATE(495)] = 3607, - [SMALL_STATE(496)] = 3717, - [SMALL_STATE(497)] = 3827, - [SMALL_STATE(498)] = 3937, - [SMALL_STATE(499)] = 4047, - [SMALL_STATE(500)] = 4157, - [SMALL_STATE(501)] = 4267, - [SMALL_STATE(502)] = 4377, - [SMALL_STATE(503)] = 4487, - [SMALL_STATE(504)] = 4597, - [SMALL_STATE(505)] = 4707, - [SMALL_STATE(506)] = 4817, - [SMALL_STATE(507)] = 4927, - [SMALL_STATE(508)] = 5034, - [SMALL_STATE(509)] = 5141, - [SMALL_STATE(510)] = 5248, - [SMALL_STATE(511)] = 5355, - [SMALL_STATE(512)] = 5462, - [SMALL_STATE(513)] = 5569, - [SMALL_STATE(514)] = 5676, - [SMALL_STATE(515)] = 5783, - [SMALL_STATE(516)] = 5890, - [SMALL_STATE(517)] = 5997, - [SMALL_STATE(518)] = 6104, - [SMALL_STATE(519)] = 6211, - [SMALL_STATE(520)] = 6318, - [SMALL_STATE(521)] = 6425, - [SMALL_STATE(522)] = 6532, - [SMALL_STATE(523)] = 6639, - [SMALL_STATE(524)] = 6746, - [SMALL_STATE(525)] = 6853, - [SMALL_STATE(526)] = 6960, - [SMALL_STATE(527)] = 7067, - [SMALL_STATE(528)] = 7174, - [SMALL_STATE(529)] = 7281, - [SMALL_STATE(530)] = 7388, - [SMALL_STATE(531)] = 7495, - [SMALL_STATE(532)] = 7602, - [SMALL_STATE(533)] = 7709, - [SMALL_STATE(534)] = 7816, - [SMALL_STATE(535)] = 7923, - [SMALL_STATE(536)] = 8030, - [SMALL_STATE(537)] = 8137, - [SMALL_STATE(538)] = 8244, - [SMALL_STATE(539)] = 8351, - [SMALL_STATE(540)] = 8458, - [SMALL_STATE(541)] = 8565, - [SMALL_STATE(542)] = 8672, - [SMALL_STATE(543)] = 8779, - [SMALL_STATE(544)] = 8886, - [SMALL_STATE(545)] = 8993, - [SMALL_STATE(546)] = 9100, - [SMALL_STATE(547)] = 9207, - [SMALL_STATE(548)] = 9314, - [SMALL_STATE(549)] = 9421, - [SMALL_STATE(550)] = 9528, - [SMALL_STATE(551)] = 9619, - [SMALL_STATE(552)] = 9726, - [SMALL_STATE(553)] = 9833, - [SMALL_STATE(554)] = 9940, - [SMALL_STATE(555)] = 10047, - [SMALL_STATE(556)] = 10154, - [SMALL_STATE(557)] = 10261, - [SMALL_STATE(558)] = 10368, - [SMALL_STATE(559)] = 10475, - [SMALL_STATE(560)] = 10582, - [SMALL_STATE(561)] = 10689, - [SMALL_STATE(562)] = 10796, - [SMALL_STATE(563)] = 10903, - [SMALL_STATE(564)] = 11010, - [SMALL_STATE(565)] = 11117, - [SMALL_STATE(566)] = 11224, - [SMALL_STATE(567)] = 11331, - [SMALL_STATE(568)] = 11438, - [SMALL_STATE(569)] = 11545, - [SMALL_STATE(570)] = 11652, - [SMALL_STATE(571)] = 11759, - [SMALL_STATE(572)] = 11866, - [SMALL_STATE(573)] = 11973, - [SMALL_STATE(574)] = 12080, - [SMALL_STATE(575)] = 12187, - [SMALL_STATE(576)] = 12294, - [SMALL_STATE(577)] = 12401, - [SMALL_STATE(578)] = 12508, - [SMALL_STATE(579)] = 12615, - [SMALL_STATE(580)] = 12722, - [SMALL_STATE(581)] = 12829, - [SMALL_STATE(582)] = 12936, - [SMALL_STATE(583)] = 13043, - [SMALL_STATE(584)] = 13150, - [SMALL_STATE(585)] = 13257, - [SMALL_STATE(586)] = 13364, - [SMALL_STATE(587)] = 13471, - [SMALL_STATE(588)] = 13578, - [SMALL_STATE(589)] = 13685, - [SMALL_STATE(590)] = 13792, - [SMALL_STATE(591)] = 13899, - [SMALL_STATE(592)] = 14006, - [SMALL_STATE(593)] = 14113, - [SMALL_STATE(594)] = 14220, - [SMALL_STATE(595)] = 14327, - [SMALL_STATE(596)] = 14434, - [SMALL_STATE(597)] = 14541, - [SMALL_STATE(598)] = 14648, - [SMALL_STATE(599)] = 14755, - [SMALL_STATE(600)] = 14862, - [SMALL_STATE(601)] = 14969, - [SMALL_STATE(602)] = 15076, - [SMALL_STATE(603)] = 15183, - [SMALL_STATE(604)] = 15290, - [SMALL_STATE(605)] = 15397, - [SMALL_STATE(606)] = 15504, - [SMALL_STATE(607)] = 15611, - [SMALL_STATE(608)] = 15718, - [SMALL_STATE(609)] = 15825, - [SMALL_STATE(610)] = 15932, - [SMALL_STATE(611)] = 16039, - [SMALL_STATE(612)] = 16146, - [SMALL_STATE(613)] = 16253, - [SMALL_STATE(614)] = 16360, - [SMALL_STATE(615)] = 16467, - [SMALL_STATE(616)] = 16574, - [SMALL_STATE(617)] = 16681, - [SMALL_STATE(618)] = 16788, - [SMALL_STATE(619)] = 16895, - [SMALL_STATE(620)] = 17002, - [SMALL_STATE(621)] = 17109, - [SMALL_STATE(622)] = 17216, - [SMALL_STATE(623)] = 17323, - [SMALL_STATE(624)] = 17430, - [SMALL_STATE(625)] = 17537, - [SMALL_STATE(626)] = 17644, - [SMALL_STATE(627)] = 17751, - [SMALL_STATE(628)] = 17858, - [SMALL_STATE(629)] = 17930, - [SMALL_STATE(630)] = 18002, - [SMALL_STATE(631)] = 18074, - [SMALL_STATE(632)] = 18143, - [SMALL_STATE(633)] = 18252, - [SMALL_STATE(634)] = 18359, - [SMALL_STATE(635)] = 18423, - [SMALL_STATE(636)] = 18487, - [SMALL_STATE(637)] = 18551, - [SMALL_STATE(638)] = 18615, - [SMALL_STATE(639)] = 18679, - [SMALL_STATE(640)] = 18743, - [SMALL_STATE(641)] = 18807, - [SMALL_STATE(642)] = 18871, - [SMALL_STATE(643)] = 18935, - [SMALL_STATE(644)] = 18999, - [SMALL_STATE(645)] = 19063, - [SMALL_STATE(646)] = 19127, - [SMALL_STATE(647)] = 19207, - [SMALL_STATE(648)] = 19308, - [SMALL_STATE(649)] = 19409, - [SMALL_STATE(650)] = 19510, - [SMALL_STATE(651)] = 19611, - [SMALL_STATE(652)] = 19712, - [SMALL_STATE(653)] = 19813, - [SMALL_STATE(654)] = 19914, - [SMALL_STATE(655)] = 20015, - [SMALL_STATE(656)] = 20116, - [SMALL_STATE(657)] = 20217, - [SMALL_STATE(658)] = 20318, - [SMALL_STATE(659)] = 20419, - [SMALL_STATE(660)] = 20520, - [SMALL_STATE(661)] = 20621, - [SMALL_STATE(662)] = 20722, - [SMALL_STATE(663)] = 20823, - [SMALL_STATE(664)] = 20923, - [SMALL_STATE(665)] = 21021, - [SMALL_STATE(666)] = 21119, - [SMALL_STATE(667)] = 21181, - [SMALL_STATE(668)] = 21252, - [SMALL_STATE(669)] = 21313, - [SMALL_STATE(670)] = 21374, - [SMALL_STATE(671)] = 21435, - [SMALL_STATE(672)] = 21495, - [SMALL_STATE(673)] = 21563, - [SMALL_STATE(674)] = 21629, - [SMALL_STATE(675)] = 21720, - [SMALL_STATE(676)] = 21811, - [SMALL_STATE(677)] = 21870, - [SMALL_STATE(678)] = 21929, - [SMALL_STATE(679)] = 21988, - [SMALL_STATE(680)] = 22047, - [SMALL_STATE(681)] = 22106, - [SMALL_STATE(682)] = 22165, - [SMALL_STATE(683)] = 22224, - [SMALL_STATE(684)] = 22315, - [SMALL_STATE(685)] = 22374, - [SMALL_STATE(686)] = 22433, - [SMALL_STATE(687)] = 22492, - [SMALL_STATE(688)] = 22551, - [SMALL_STATE(689)] = 22610, - [SMALL_STATE(690)] = 22669, - [SMALL_STATE(691)] = 22728, - [SMALL_STATE(692)] = 22819, - [SMALL_STATE(693)] = 22878, - [SMALL_STATE(694)] = 22937, - [SMALL_STATE(695)] = 23028, - [SMALL_STATE(696)] = 23119, - [SMALL_STATE(697)] = 23210, - [SMALL_STATE(698)] = 23301, - [SMALL_STATE(699)] = 23360, - [SMALL_STATE(700)] = 23418, - [SMALL_STATE(701)] = 23486, - [SMALL_STATE(702)] = 23544, - [SMALL_STATE(703)] = 23612, - [SMALL_STATE(704)] = 23670, - [SMALL_STATE(705)] = 23738, - [SMALL_STATE(706)] = 23806, - [SMALL_STATE(707)] = 23864, - [SMALL_STATE(708)] = 23932, - [SMALL_STATE(709)] = 23998, - [SMALL_STATE(710)] = 24056, - [SMALL_STATE(711)] = 24144, - [SMALL_STATE(712)] = 24209, - [SMALL_STATE(713)] = 24274, - [SMALL_STATE(714)] = 24347, - [SMALL_STATE(715)] = 24408, - [SMALL_STATE(716)] = 24465, - [SMALL_STATE(717)] = 24522, - [SMALL_STATE(718)] = 24587, - [SMALL_STATE(719)] = 24652, - [SMALL_STATE(720)] = 24717, - [SMALL_STATE(721)] = 24774, - [SMALL_STATE(722)] = 24839, - [SMALL_STATE(723)] = 24912, - [SMALL_STATE(724)] = 24977, - [SMALL_STATE(725)] = 25049, - [SMALL_STATE(726)] = 25121, - [SMALL_STATE(727)] = 25177, - [SMALL_STATE(728)] = 25249, - [SMALL_STATE(729)] = 25321, - [SMALL_STATE(730)] = 25377, - [SMALL_STATE(731)] = 25433, - [SMALL_STATE(732)] = 25492, - [SMALL_STATE(733)] = 25551, - [SMALL_STATE(734)] = 25610, - [SMALL_STATE(735)] = 25669, - [SMALL_STATE(736)] = 25728, - [SMALL_STATE(737)] = 25787, - [SMALL_STATE(738)] = 25846, - [SMALL_STATE(739)] = 25905, - [SMALL_STATE(740)] = 25964, - [SMALL_STATE(741)] = 26023, - [SMALL_STATE(742)] = 26082, - [SMALL_STATE(743)] = 26136, - [SMALL_STATE(744)] = 26190, - [SMALL_STATE(745)] = 26244, - [SMALL_STATE(746)] = 26302, - [SMALL_STATE(747)] = 26356, - [SMALL_STATE(748)] = 26414, - [SMALL_STATE(749)] = 26468, - [SMALL_STATE(750)] = 26528, - [SMALL_STATE(751)] = 26586, - [SMALL_STATE(752)] = 26644, - [SMALL_STATE(753)] = 26702, - [SMALL_STATE(754)] = 26760, - [SMALL_STATE(755)] = 26818, - [SMALL_STATE(756)] = 26876, - [SMALL_STATE(757)] = 26934, - [SMALL_STATE(758)] = 26988, - [SMALL_STATE(759)] = 27042, - [SMALL_STATE(760)] = 27096, - [SMALL_STATE(761)] = 27150, - [SMALL_STATE(762)] = 27204, - [SMALL_STATE(763)] = 27258, - [SMALL_STATE(764)] = 27312, - [SMALL_STATE(765)] = 27366, - [SMALL_STATE(766)] = 27420, - [SMALL_STATE(767)] = 27480, - [SMALL_STATE(768)] = 27534, - [SMALL_STATE(769)] = 27592, - [SMALL_STATE(770)] = 27646, - [SMALL_STATE(771)] = 27704, - [SMALL_STATE(772)] = 27762, - [SMALL_STATE(773)] = 27816, - [SMALL_STATE(774)] = 27870, - [SMALL_STATE(775)] = 27924, - [SMALL_STATE(776)] = 27978, - [SMALL_STATE(777)] = 28032, - [SMALL_STATE(778)] = 28086, - [SMALL_STATE(779)] = 28140, - [SMALL_STATE(780)] = 28194, - [SMALL_STATE(781)] = 28248, - [SMALL_STATE(782)] = 28302, - [SMALL_STATE(783)] = 28356, - [SMALL_STATE(784)] = 28447, - [SMALL_STATE(785)] = 28500, - [SMALL_STATE(786)] = 28553, - [SMALL_STATE(787)] = 28606, - [SMALL_STATE(788)] = 28659, - [SMALL_STATE(789)] = 28722, - [SMALL_STATE(790)] = 28775, - [SMALL_STATE(791)] = 28828, - [SMALL_STATE(792)] = 28881, - [SMALL_STATE(793)] = 28944, - [SMALL_STATE(794)] = 29015, - [SMALL_STATE(795)] = 29068, - [SMALL_STATE(796)] = 29121, - [SMALL_STATE(797)] = 29184, - [SMALL_STATE(798)] = 29275, - [SMALL_STATE(799)] = 29346, - [SMALL_STATE(800)] = 29409, - [SMALL_STATE(801)] = 29480, - [SMALL_STATE(802)] = 29543, - [SMALL_STATE(803)] = 29596, - [SMALL_STATE(804)] = 29649, - [SMALL_STATE(805)] = 29712, - [SMALL_STATE(806)] = 29765, - [SMALL_STATE(807)] = 29818, - [SMALL_STATE(808)] = 29871, - [SMALL_STATE(809)] = 29924, - [SMALL_STATE(810)] = 29977, - [SMALL_STATE(811)] = 30030, - [SMALL_STATE(812)] = 30083, - [SMALL_STATE(813)] = 30154, - [SMALL_STATE(814)] = 30220, - [SMALL_STATE(815)] = 30278, - [SMALL_STATE(816)] = 30352, - [SMALL_STATE(817)] = 30424, - [SMALL_STATE(818)] = 30510, - [SMALL_STATE(819)] = 30572, - [SMALL_STATE(820)] = 30656, - [SMALL_STATE(821)] = 30724, - [SMALL_STATE(822)] = 30788, - [SMALL_STATE(823)] = 30846, - [SMALL_STATE(824)] = 30932, - [SMALL_STATE(825)] = 30996, - [SMALL_STATE(826)] = 31078, - [SMALL_STATE(827)] = 31158, - [SMALL_STATE(828)] = 31234, - [SMALL_STATE(829)] = 31310, - [SMALL_STATE(830)] = 31384, - [SMALL_STATE(831)] = 31456, - [SMALL_STATE(832)] = 31524, - [SMALL_STATE(833)] = 31590, - [SMALL_STATE(834)] = 31676, - [SMALL_STATE(835)] = 31762, - [SMALL_STATE(836)] = 31846, - [SMALL_STATE(837)] = 31926, - [SMALL_STATE(838)] = 32008, - [SMALL_STATE(839)] = 32094, - [SMALL_STATE(840)] = 32172, - [SMALL_STATE(841)] = 32232, - [SMALL_STATE(842)] = 32318, - [SMALL_STATE(843)] = 32396, - [SMALL_STATE(844)] = 32451, - [SMALL_STATE(845)] = 32510, - [SMALL_STATE(846)] = 32565, - [SMALL_STATE(847)] = 32615, - [SMALL_STATE(848)] = 32701, - [SMALL_STATE(849)] = 32787, - [SMALL_STATE(850)] = 32837, - [SMALL_STATE(851)] = 32890, - [SMALL_STATE(852)] = 32939, - [SMALL_STATE(853)] = 32988, - [SMALL_STATE(854)] = 33041, - [SMALL_STATE(855)] = 33090, - [SMALL_STATE(856)] = 33139, - [SMALL_STATE(857)] = 33188, - [SMALL_STATE(858)] = 33237, - [SMALL_STATE(859)] = 33286, - [SMALL_STATE(860)] = 33335, - [SMALL_STATE(861)] = 33384, - [SMALL_STATE(862)] = 33433, - [SMALL_STATE(863)] = 33482, - [SMALL_STATE(864)] = 33531, - [SMALL_STATE(865)] = 33580, - [SMALL_STATE(866)] = 33629, - [SMALL_STATE(867)] = 33678, - [SMALL_STATE(868)] = 33727, - [SMALL_STATE(869)] = 33780, - [SMALL_STATE(870)] = 33833, - [SMALL_STATE(871)] = 33882, - [SMALL_STATE(872)] = 33931, - [SMALL_STATE(873)] = 33980, - [SMALL_STATE(874)] = 34029, - [SMALL_STATE(875)] = 34078, - [SMALL_STATE(876)] = 34127, - [SMALL_STATE(877)] = 34180, - [SMALL_STATE(878)] = 34229, - [SMALL_STATE(879)] = 34282, - [SMALL_STATE(880)] = 34335, - [SMALL_STATE(881)] = 34384, - [SMALL_STATE(882)] = 34433, - [SMALL_STATE(883)] = 34482, - [SMALL_STATE(884)] = 34531, - [SMALL_STATE(885)] = 34580, - [SMALL_STATE(886)] = 34629, - [SMALL_STATE(887)] = 34678, - [SMALL_STATE(888)] = 34727, - [SMALL_STATE(889)] = 34776, - [SMALL_STATE(890)] = 34825, - [SMALL_STATE(891)] = 34874, - [SMALL_STATE(892)] = 34923, - [SMALL_STATE(893)] = 34972, - [SMALL_STATE(894)] = 35049, - [SMALL_STATE(895)] = 35096, - [SMALL_STATE(896)] = 35155, - [SMALL_STATE(897)] = 35214, - [SMALL_STATE(898)] = 35273, - [SMALL_STATE(899)] = 35356, - [SMALL_STATE(900)] = 35417, - [SMALL_STATE(901)] = 35496, - [SMALL_STATE(902)] = 35573, - [SMALL_STATE(903)] = 35648, - [SMALL_STATE(904)] = 35721, - [SMALL_STATE(905)] = 35792, - [SMALL_STATE(906)] = 35861, - [SMALL_STATE(907)] = 35926, - [SMALL_STATE(908)] = 35989, - [SMALL_STATE(909)] = 36066, - [SMALL_STATE(910)] = 36149, - [SMALL_STATE(911)] = 36232, - [SMALL_STATE(912)] = 36313, - [SMALL_STATE(913)] = 36370, - [SMALL_STATE(914)] = 36429, - [SMALL_STATE(915)] = 36488, - [SMALL_STATE(916)] = 36547, - [SMALL_STATE(917)] = 36624, - [SMALL_STATE(918)] = 36701, - [SMALL_STATE(919)] = 36747, - [SMALL_STATE(920)] = 36793, - [SMALL_STATE(921)] = 36839, - [SMALL_STATE(922)] = 36885, - [SMALL_STATE(923)] = 36931, - [SMALL_STATE(924)] = 36987, - [SMALL_STATE(925)] = 37033, - [SMALL_STATE(926)] = 37079, - [SMALL_STATE(927)] = 37125, - [SMALL_STATE(928)] = 37171, - [SMALL_STATE(929)] = 37217, - [SMALL_STATE(930)] = 37263, - [SMALL_STATE(931)] = 37309, - [SMALL_STATE(932)] = 37355, - [SMALL_STATE(933)] = 37405, - [SMALL_STATE(934)] = 37459, - [SMALL_STATE(935)] = 37534, - [SMALL_STATE(936)] = 37585, - [SMALL_STATE(937)] = 37660, - [SMALL_STATE(938)] = 37704, - [SMALL_STATE(939)] = 37748, - [SMALL_STATE(940)] = 37792, - [SMALL_STATE(941)] = 37836, - [SMALL_STATE(942)] = 37880, - [SMALL_STATE(943)] = 37924, - [SMALL_STATE(944)] = 37968, - [SMALL_STATE(945)] = 38012, - [SMALL_STATE(946)] = 38056, - [SMALL_STATE(947)] = 38100, - [SMALL_STATE(948)] = 38144, - [SMALL_STATE(949)] = 38188, - [SMALL_STATE(950)] = 38232, - [SMALL_STATE(951)] = 38283, - [SMALL_STATE(952)] = 38356, - [SMALL_STATE(953)] = 38429, - [SMALL_STATE(954)] = 38499, - [SMALL_STATE(955)] = 38567, - [SMALL_STATE(956)] = 38635, - [SMALL_STATE(957)] = 38703, - [SMALL_STATE(958)] = 38773, - [SMALL_STATE(959)] = 38841, - [SMALL_STATE(960)] = 38909, - [SMALL_STATE(961)] = 38977, - [SMALL_STATE(962)] = 39045, - [SMALL_STATE(963)] = 39113, - [SMALL_STATE(964)] = 39181, - [SMALL_STATE(965)] = 39249, - [SMALL_STATE(966)] = 39317, - [SMALL_STATE(967)] = 39385, - [SMALL_STATE(968)] = 39448, - [SMALL_STATE(969)] = 39525, - [SMALL_STATE(970)] = 39600, - [SMALL_STATE(971)] = 39677, - [SMALL_STATE(972)] = 39732, - [SMALL_STATE(973)] = 39805, - [SMALL_STATE(974)] = 39876, - [SMALL_STATE(975)] = 39945, - [SMALL_STATE(976)] = 40012, - [SMALL_STATE(977)] = 40077, - [SMALL_STATE(978)] = 40140, - [SMALL_STATE(979)] = 40199, - [SMALL_STATE(980)] = 40256, - [SMALL_STATE(981)] = 40333, - [SMALL_STATE(982)] = 40410, - [SMALL_STATE(983)] = 40487, - [SMALL_STATE(984)] = 40542, - [SMALL_STATE(985)] = 40615, - [SMALL_STATE(986)] = 40686, - [SMALL_STATE(987)] = 40755, - [SMALL_STATE(988)] = 40830, - [SMALL_STATE(989)] = 40897, - [SMALL_STATE(990)] = 40962, - [SMALL_STATE(991)] = 41039, - [SMALL_STATE(992)] = 41098, - [SMALL_STATE(993)] = 41155, - [SMALL_STATE(994)] = 41232, - [SMALL_STATE(995)] = 41296, - [SMALL_STATE(996)] = 41360, - [SMALL_STATE(997)] = 41400, - [SMALL_STATE(998)] = 41464, - [SMALL_STATE(999)] = 41504, - [SMALL_STATE(1000)] = 41544, - [SMALL_STATE(1001)] = 41584, - [SMALL_STATE(1002)] = 41648, - [SMALL_STATE(1003)] = 41712, - [SMALL_STATE(1004)] = 41776, - [SMALL_STATE(1005)] = 41816, - [SMALL_STATE(1006)] = 41880, - [SMALL_STATE(1007)] = 41944, - [SMALL_STATE(1008)] = 42008, - [SMALL_STATE(1009)] = 42072, - [SMALL_STATE(1010)] = 42136, - [SMALL_STATE(1011)] = 42200, - [SMALL_STATE(1012)] = 42264, - [SMALL_STATE(1013)] = 42304, - [SMALL_STATE(1014)] = 42365, - [SMALL_STATE(1015)] = 42426, - [SMALL_STATE(1016)] = 42487, - [SMALL_STATE(1017)] = 42548, - [SMALL_STATE(1018)] = 42609, - [SMALL_STATE(1019)] = 42670, - [SMALL_STATE(1020)] = 42744, - [SMALL_STATE(1021)] = 42792, - [SMALL_STATE(1022)] = 42866, - [SMALL_STATE(1023)] = 42912, - [SMALL_STATE(1024)] = 42987, - [SMALL_STATE(1025)] = 43062, - [SMALL_STATE(1026)] = 43137, - [SMALL_STATE(1027)] = 43212, - [SMALL_STATE(1028)] = 43282, - [SMALL_STATE(1029)] = 43356, - [SMALL_STATE(1030)] = 43428, - [SMALL_STATE(1031)] = 43480, - [SMALL_STATE(1032)] = 43548, - [SMALL_STATE(1033)] = 43614, - [SMALL_STATE(1034)] = 43680, - [SMALL_STATE(1035)] = 43744, - [SMALL_STATE(1036)] = 43806, - [SMALL_STATE(1037)] = 43866, - [SMALL_STATE(1038)] = 43922, - [SMALL_STATE(1039)] = 43976, - [SMALL_STATE(1040)] = 44048, - [SMALL_STATE(1041)] = 44120, - [SMALL_STATE(1042)] = 44192, - [SMALL_STATE(1043)] = 44264, - [SMALL_STATE(1044)] = 44334, - [SMALL_STATE(1045)] = 44374, - [SMALL_STATE(1046)] = 44444, - [SMALL_STATE(1047)] = 44514, - [SMALL_STATE(1048)] = 44584, - [SMALL_STATE(1049)] = 44656, - [SMALL_STATE(1050)] = 44728, - [SMALL_STATE(1051)] = 44800, - [SMALL_STATE(1052)] = 44872, - [SMALL_STATE(1053)] = 44944, - [SMALL_STATE(1054)] = 45016, - [SMALL_STATE(1055)] = 45088, - [SMALL_STATE(1056)] = 45160, - [SMALL_STATE(1057)] = 45232, - [SMALL_STATE(1058)] = 45302, - [SMALL_STATE(1059)] = 45374, - [SMALL_STATE(1060)] = 45446, - [SMALL_STATE(1061)] = 45516, - [SMALL_STATE(1062)] = 45588, - [SMALL_STATE(1063)] = 45628, - [SMALL_STATE(1064)] = 45678, - [SMALL_STATE(1065)] = 45750, - [SMALL_STATE(1066)] = 45822, - [SMALL_STATE(1067)] = 45894, - [SMALL_STATE(1068)] = 45964, - [SMALL_STATE(1069)] = 46036, - [SMALL_STATE(1070)] = 46076, - [SMALL_STATE(1071)] = 46148, - [SMALL_STATE(1072)] = 46220, - [SMALL_STATE(1073)] = 46292, - [SMALL_STATE(1074)] = 46364, - [SMALL_STATE(1075)] = 46436, - [SMALL_STATE(1076)] = 46508, - [SMALL_STATE(1077)] = 46558, - [SMALL_STATE(1078)] = 46630, - [SMALL_STATE(1079)] = 46702, - [SMALL_STATE(1080)] = 46771, - [SMALL_STATE(1081)] = 46840, - [SMALL_STATE(1082)] = 46909, - [SMALL_STATE(1083)] = 46978, - [SMALL_STATE(1084)] = 47047, - [SMALL_STATE(1085)] = 47102, - [SMALL_STATE(1086)] = 47157, - [SMALL_STATE(1087)] = 47226, - [SMALL_STATE(1088)] = 47281, - [SMALL_STATE(1089)] = 47350, - [SMALL_STATE(1090)] = 47419, - [SMALL_STATE(1091)] = 47488, - [SMALL_STATE(1092)] = 47543, - [SMALL_STATE(1093)] = 47612, - [SMALL_STATE(1094)] = 47667, - [SMALL_STATE(1095)] = 47736, - [SMALL_STATE(1096)] = 47805, - [SMALL_STATE(1097)] = 47874, - [SMALL_STATE(1098)] = 47943, - [SMALL_STATE(1099)] = 48012, - [SMALL_STATE(1100)] = 48081, - [SMALL_STATE(1101)] = 48150, - [SMALL_STATE(1102)] = 48205, - [SMALL_STATE(1103)] = 48274, - [SMALL_STATE(1104)] = 48343, - [SMALL_STATE(1105)] = 48412, - [SMALL_STATE(1106)] = 48481, - [SMALL_STATE(1107)] = 48550, - [SMALL_STATE(1108)] = 48619, - [SMALL_STATE(1109)] = 48688, - [SMALL_STATE(1110)] = 48740, - [SMALL_STATE(1111)] = 48792, - [SMALL_STATE(1112)] = 48844, - [SMALL_STATE(1113)] = 48896, - [SMALL_STATE(1114)] = 48948, - [SMALL_STATE(1115)] = 49000, - [SMALL_STATE(1116)] = 49052, - [SMALL_STATE(1117)] = 49118, - [SMALL_STATE(1118)] = 49170, - [SMALL_STATE(1119)] = 49222, - [SMALL_STATE(1120)] = 49258, - [SMALL_STATE(1121)] = 49307, - [SMALL_STATE(1122)] = 49346, - [SMALL_STATE(1123)] = 49395, - [SMALL_STATE(1124)] = 49435, - [SMALL_STATE(1125)] = 49475, - [SMALL_STATE(1126)] = 49515, - [SMALL_STATE(1127)] = 49555, - [SMALL_STATE(1128)] = 49611, - [SMALL_STATE(1129)] = 49660, - [SMALL_STATE(1130)] = 49694, - [SMALL_STATE(1131)] = 49728, - [SMALL_STATE(1132)] = 49762, - [SMALL_STATE(1133)] = 49796, - [SMALL_STATE(1134)] = 49830, - [SMALL_STATE(1135)] = 49864, - [SMALL_STATE(1136)] = 49898, - [SMALL_STATE(1137)] = 49952, - [SMALL_STATE(1138)] = 50006, - [SMALL_STATE(1139)] = 50060, - [SMALL_STATE(1140)] = 50114, - [SMALL_STATE(1141)] = 50148, - [SMALL_STATE(1142)] = 50182, - [SMALL_STATE(1143)] = 50216, - [SMALL_STATE(1144)] = 50250, - [SMALL_STATE(1145)] = 50286, - [SMALL_STATE(1146)] = 50320, - [SMALL_STATE(1147)] = 50354, - [SMALL_STATE(1148)] = 50388, - [SMALL_STATE(1149)] = 50439, - [SMALL_STATE(1150)] = 50490, - [SMALL_STATE(1151)] = 50545, - [SMALL_STATE(1152)] = 50600, - [SMALL_STATE(1153)] = 50651, - [SMALL_STATE(1154)] = 50702, - [SMALL_STATE(1155)] = 50753, - [SMALL_STATE(1156)] = 50794, - [SMALL_STATE(1157)] = 50845, - [SMALL_STATE(1158)] = 50900, - [SMALL_STATE(1159)] = 50951, - [SMALL_STATE(1160)] = 51002, - [SMALL_STATE(1161)] = 51053, - [SMALL_STATE(1162)] = 51096, - [SMALL_STATE(1163)] = 51147, - [SMALL_STATE(1164)] = 51190, - [SMALL_STATE(1165)] = 51233, - [SMALL_STATE(1166)] = 51284, - [SMALL_STATE(1167)] = 51317, - [SMALL_STATE(1168)] = 51357, - [SMALL_STATE(1169)] = 51385, - [SMALL_STATE(1170)] = 51413, - [SMALL_STATE(1171)] = 51453, - [SMALL_STATE(1172)] = 51501, - [SMALL_STATE(1173)] = 51541, - [SMALL_STATE(1174)] = 51581, - [SMALL_STATE(1175)] = 51621, - [SMALL_STATE(1176)] = 51661, - [SMALL_STATE(1177)] = 51689, - [SMALL_STATE(1178)] = 51729, - [SMALL_STATE(1179)] = 51775, - [SMALL_STATE(1180)] = 51815, - [SMALL_STATE(1181)] = 51865, - [SMALL_STATE(1182)] = 51905, - [SMALL_STATE(1183)] = 51951, - [SMALL_STATE(1184)] = 51991, - [SMALL_STATE(1185)] = 52035, - [SMALL_STATE(1186)] = 52075, - [SMALL_STATE(1187)] = 52115, - [SMALL_STATE(1188)] = 52157, - [SMALL_STATE(1189)] = 52197, - [SMALL_STATE(1190)] = 52237, - [SMALL_STATE(1191)] = 52265, - [SMALL_STATE(1192)] = 52305, - [SMALL_STATE(1193)] = 52345, - [SMALL_STATE(1194)] = 52385, - [SMALL_STATE(1195)] = 52425, - [SMALL_STATE(1196)] = 52465, - [SMALL_STATE(1197)] = 52505, - [SMALL_STATE(1198)] = 52545, - [SMALL_STATE(1199)] = 52585, - [SMALL_STATE(1200)] = 52625, - [SMALL_STATE(1201)] = 52665, - [SMALL_STATE(1202)] = 52705, - [SMALL_STATE(1203)] = 52741, - [SMALL_STATE(1204)] = 52781, - [SMALL_STATE(1205)] = 52821, - [SMALL_STATE(1206)] = 52855, - [SMALL_STATE(1207)] = 52895, - [SMALL_STATE(1208)] = 52935, - [SMALL_STATE(1209)] = 52975, - [SMALL_STATE(1210)] = 53015, - [SMALL_STATE(1211)] = 53055, - [SMALL_STATE(1212)] = 53095, - [SMALL_STATE(1213)] = 53135, - [SMALL_STATE(1214)] = 53163, - [SMALL_STATE(1215)] = 53203, - [SMALL_STATE(1216)] = 53243, - [SMALL_STATE(1217)] = 53283, - [SMALL_STATE(1218)] = 53323, - [SMALL_STATE(1219)] = 53351, - [SMALL_STATE(1220)] = 53391, - [SMALL_STATE(1221)] = 53423, - [SMALL_STATE(1222)] = 53463, - [SMALL_STATE(1223)] = 53512, - [SMALL_STATE(1224)] = 53539, - [SMALL_STATE(1225)] = 53584, - [SMALL_STATE(1226)] = 53627, - [SMALL_STATE(1227)] = 53668, - [SMALL_STATE(1228)] = 53707, - [SMALL_STATE(1229)] = 53744, - [SMALL_STATE(1230)] = 53779, - [SMALL_STATE(1231)] = 53812, - [SMALL_STATE(1232)] = 53843, - [SMALL_STATE(1233)] = 53888, - [SMALL_STATE(1234)] = 53937, - [SMALL_STATE(1235)] = 53964, - [SMALL_STATE(1236)] = 54009, - [SMALL_STATE(1237)] = 54036, - [SMALL_STATE(1238)] = 54081, - [SMALL_STATE(1239)] = 54110, - [SMALL_STATE(1240)] = 54155, - [SMALL_STATE(1241)] = 54182, - [SMALL_STATE(1242)] = 54227, - [SMALL_STATE(1243)] = 54272, - [SMALL_STATE(1244)] = 54299, - [SMALL_STATE(1245)] = 54326, - [SMALL_STATE(1246)] = 54353, - [SMALL_STATE(1247)] = 54396, - [SMALL_STATE(1248)] = 54423, - [SMALL_STATE(1249)] = 54468, - [SMALL_STATE(1250)] = 54495, - [SMALL_STATE(1251)] = 54540, - [SMALL_STATE(1252)] = 54585, - [SMALL_STATE(1253)] = 54628, - [SMALL_STATE(1254)] = 54673, - [SMALL_STATE(1255)] = 54718, - [SMALL_STATE(1256)] = 54761, - [SMALL_STATE(1257)] = 54788, - [SMALL_STATE(1258)] = 54833, - [SMALL_STATE(1259)] = 54878, - [SMALL_STATE(1260)] = 54921, - [SMALL_STATE(1261)] = 54966, - [SMALL_STATE(1262)] = 55006, - [SMALL_STATE(1263)] = 55046, - [SMALL_STATE(1264)] = 55082, - [SMALL_STATE(1265)] = 55122, - [SMALL_STATE(1266)] = 55162, - [SMALL_STATE(1267)] = 55206, - [SMALL_STATE(1268)] = 55246, - [SMALL_STATE(1269)] = 55288, - [SMALL_STATE(1270)] = 55328, - [SMALL_STATE(1271)] = 55359, - [SMALL_STATE(1272)] = 55400, - [SMALL_STATE(1273)] = 55439, - [SMALL_STATE(1274)] = 55470, - [SMALL_STATE(1275)] = 55511, - [SMALL_STATE(1276)] = 55542, - [SMALL_STATE(1277)] = 55583, - [SMALL_STATE(1278)] = 55624, - [SMALL_STATE(1279)] = 55665, - [SMALL_STATE(1280)] = 55706, - [SMALL_STATE(1281)] = 55747, - [SMALL_STATE(1282)] = 55778, - [SMALL_STATE(1283)] = 55819, - [SMALL_STATE(1284)] = 55861, - [SMALL_STATE(1285)] = 55903, - [SMALL_STATE(1286)] = 55931, - [SMALL_STATE(1287)] = 55973, - [SMALL_STATE(1288)] = 56011, - [SMALL_STATE(1289)] = 56049, - [SMALL_STATE(1290)] = 56076, - [SMALL_STATE(1291)] = 56099, - [SMALL_STATE(1292)] = 56138, - [SMALL_STATE(1293)] = 56177, - [SMALL_STATE(1294)] = 56216, - [SMALL_STATE(1295)] = 56255, - [SMALL_STATE(1296)] = 56282, - [SMALL_STATE(1297)] = 56315, - [SMALL_STATE(1298)] = 56338, - [SMALL_STATE(1299)] = 56361, - [SMALL_STATE(1300)] = 56393, - [SMALL_STATE(1301)] = 56425, - [SMALL_STATE(1302)] = 56457, - [SMALL_STATE(1303)] = 56489, - [SMALL_STATE(1304)] = 56528, - [SMALL_STATE(1305)] = 56549, - [SMALL_STATE(1306)] = 56570, - [SMALL_STATE(1307)] = 56607, - [SMALL_STATE(1308)] = 56644, - [SMALL_STATE(1309)] = 56665, - [SMALL_STATE(1310)] = 56702, - [SMALL_STATE(1311)] = 56739, - [SMALL_STATE(1312)] = 56760, - [SMALL_STATE(1313)] = 56797, - [SMALL_STATE(1314)] = 56824, - [SMALL_STATE(1315)] = 56845, - [SMALL_STATE(1316)] = 56866, - [SMALL_STATE(1317)] = 56903, - [SMALL_STATE(1318)] = 56936, - [SMALL_STATE(1319)] = 56973, - [SMALL_STATE(1320)] = 57010, - [SMALL_STATE(1321)] = 57047, - [SMALL_STATE(1322)] = 57068, - [SMALL_STATE(1323)] = 57105, - [SMALL_STATE(1324)] = 57142, - [SMALL_STATE(1325)] = 57175, - [SMALL_STATE(1326)] = 57205, - [SMALL_STATE(1327)] = 57235, - [SMALL_STATE(1328)] = 57265, - [SMALL_STATE(1329)] = 57299, - [SMALL_STATE(1330)] = 57333, - [SMALL_STATE(1331)] = 57363, - [SMALL_STATE(1332)] = 57388, - [SMALL_STATE(1333)] = 57419, - [SMALL_STATE(1334)] = 57442, - [SMALL_STATE(1335)] = 57471, - [SMALL_STATE(1336)] = 57500, - [SMALL_STATE(1337)] = 57529, - [SMALL_STATE(1338)] = 57558, - [SMALL_STATE(1339)] = 57587, - [SMALL_STATE(1340)] = 57610, - [SMALL_STATE(1341)] = 57641, - [SMALL_STATE(1342)] = 57670, - [SMALL_STATE(1343)] = 57701, - [SMALL_STATE(1344)] = 57730, - [SMALL_STATE(1345)] = 57761, - [SMALL_STATE(1346)] = 57790, - [SMALL_STATE(1347)] = 57819, - [SMALL_STATE(1348)] = 57850, - [SMALL_STATE(1349)] = 57881, - [SMALL_STATE(1350)] = 57910, - [SMALL_STATE(1351)] = 57943, - [SMALL_STATE(1352)] = 57968, - [SMALL_STATE(1353)] = 57999, - [SMALL_STATE(1354)] = 58028, - [SMALL_STATE(1355)] = 58057, - [SMALL_STATE(1356)] = 58086, - [SMALL_STATE(1357)] = 58115, - [SMALL_STATE(1358)] = 58144, - [SMALL_STATE(1359)] = 58173, - [SMALL_STATE(1360)] = 58202, - [SMALL_STATE(1361)] = 58233, - [SMALL_STATE(1362)] = 58262, - [SMALL_STATE(1363)] = 58285, - [SMALL_STATE(1364)] = 58313, - [SMALL_STATE(1365)] = 58337, - [SMALL_STATE(1366)] = 58369, - [SMALL_STATE(1367)] = 58391, - [SMALL_STATE(1368)] = 58415, - [SMALL_STATE(1369)] = 58443, - [SMALL_STATE(1370)] = 58471, - [SMALL_STATE(1371)] = 58499, - [SMALL_STATE(1372)] = 58527, - [SMALL_STATE(1373)] = 58551, - [SMALL_STATE(1374)] = 58583, - [SMALL_STATE(1375)] = 58615, - [SMALL_STATE(1376)] = 58637, - [SMALL_STATE(1377)] = 58669, - [SMALL_STATE(1378)] = 58690, - [SMALL_STATE(1379)] = 58719, - [SMALL_STATE(1380)] = 58740, - [SMALL_STATE(1381)] = 58763, - [SMALL_STATE(1382)] = 58792, - [SMALL_STATE(1383)] = 58809, - [SMALL_STATE(1384)] = 58826, - [SMALL_STATE(1385)] = 58843, - [SMALL_STATE(1386)] = 58864, - [SMALL_STATE(1387)] = 58885, - [SMALL_STATE(1388)] = 58906, - [SMALL_STATE(1389)] = 58923, - [SMALL_STATE(1390)] = 58950, - [SMALL_STATE(1391)] = 58971, - [SMALL_STATE(1392)] = 58996, - [SMALL_STATE(1393)] = 59013, - [SMALL_STATE(1394)] = 59042, - [SMALL_STATE(1395)] = 59071, - [SMALL_STATE(1396)] = 59088, - [SMALL_STATE(1397)] = 59111, - [SMALL_STATE(1398)] = 59128, - [SMALL_STATE(1399)] = 59149, - [SMALL_STATE(1400)] = 59166, - [SMALL_STATE(1401)] = 59195, - [SMALL_STATE(1402)] = 59224, - [SMALL_STATE(1403)] = 59253, - [SMALL_STATE(1404)] = 59270, - [SMALL_STATE(1405)] = 59299, - [SMALL_STATE(1406)] = 59315, - [SMALL_STATE(1407)] = 59341, - [SMALL_STATE(1408)] = 59367, - [SMALL_STATE(1409)] = 59393, - [SMALL_STATE(1410)] = 59409, - [SMALL_STATE(1411)] = 59425, - [SMALL_STATE(1412)] = 59451, - [SMALL_STATE(1413)] = 59477, - [SMALL_STATE(1414)] = 59503, - [SMALL_STATE(1415)] = 59519, - [SMALL_STATE(1416)] = 59541, - [SMALL_STATE(1417)] = 59567, - [SMALL_STATE(1418)] = 59585, - [SMALL_STATE(1419)] = 59607, - [SMALL_STATE(1420)] = 59627, - [SMALL_STATE(1421)] = 59643, - [SMALL_STATE(1422)] = 59659, - [SMALL_STATE(1423)] = 59685, - [SMALL_STATE(1424)] = 59701, - [SMALL_STATE(1425)] = 59717, - [SMALL_STATE(1426)] = 59743, - [SMALL_STATE(1427)] = 59759, - [SMALL_STATE(1428)] = 59779, - [SMALL_STATE(1429)] = 59805, - [SMALL_STATE(1430)] = 59827, - [SMALL_STATE(1431)] = 59849, - [SMALL_STATE(1432)] = 59869, - [SMALL_STATE(1433)] = 59885, - [SMALL_STATE(1434)] = 59911, - [SMALL_STATE(1435)] = 59937, - [SMALL_STATE(1436)] = 59963, - [SMALL_STATE(1437)] = 59978, - [SMALL_STATE(1438)] = 59993, - [SMALL_STATE(1439)] = 60016, - [SMALL_STATE(1440)] = 60039, - [SMALL_STATE(1441)] = 60062, - [SMALL_STATE(1442)] = 60079, - [SMALL_STATE(1443)] = 60094, - [SMALL_STATE(1444)] = 60117, - [SMALL_STATE(1445)] = 60136, - [SMALL_STATE(1446)] = 60159, - [SMALL_STATE(1447)] = 60182, - [SMALL_STATE(1448)] = 60197, - [SMALL_STATE(1449)] = 60220, - [SMALL_STATE(1450)] = 60235, - [SMALL_STATE(1451)] = 60252, - [SMALL_STATE(1452)] = 60267, - [SMALL_STATE(1453)] = 60282, - [SMALL_STATE(1454)] = 60305, - [SMALL_STATE(1455)] = 60328, - [SMALL_STATE(1456)] = 60351, - [SMALL_STATE(1457)] = 60370, - [SMALL_STATE(1458)] = 60393, - [SMALL_STATE(1459)] = 60416, - [SMALL_STATE(1460)] = 60439, - [SMALL_STATE(1461)] = 60462, - [SMALL_STATE(1462)] = 60485, - [SMALL_STATE(1463)] = 60508, - [SMALL_STATE(1464)] = 60525, - [SMALL_STATE(1465)] = 60540, - [SMALL_STATE(1466)] = 60555, - [SMALL_STATE(1467)] = 60572, - [SMALL_STATE(1468)] = 60587, - [SMALL_STATE(1469)] = 60610, - [SMALL_STATE(1470)] = 60633, - [SMALL_STATE(1471)] = 60656, - [SMALL_STATE(1472)] = 60671, - [SMALL_STATE(1473)] = 60686, - [SMALL_STATE(1474)] = 60701, - [SMALL_STATE(1475)] = 60719, - [SMALL_STATE(1476)] = 60737, - [SMALL_STATE(1477)] = 60751, - [SMALL_STATE(1478)] = 60765, - [SMALL_STATE(1479)] = 60783, - [SMALL_STATE(1480)] = 60797, - [SMALL_STATE(1481)] = 60811, - [SMALL_STATE(1482)] = 60831, - [SMALL_STATE(1483)] = 60845, - [SMALL_STATE(1484)] = 60859, - [SMALL_STATE(1485)] = 60877, - [SMALL_STATE(1486)] = 60891, - [SMALL_STATE(1487)] = 60909, - [SMALL_STATE(1488)] = 60923, - [SMALL_STATE(1489)] = 60937, - [SMALL_STATE(1490)] = 60951, - [SMALL_STATE(1491)] = 60965, - [SMALL_STATE(1492)] = 60983, - [SMALL_STATE(1493)] = 61001, - [SMALL_STATE(1494)] = 61015, - [SMALL_STATE(1495)] = 61033, - [SMALL_STATE(1496)] = 61051, - [SMALL_STATE(1497)] = 61065, - [SMALL_STATE(1498)] = 61079, - [SMALL_STATE(1499)] = 61093, - [SMALL_STATE(1500)] = 61110, - [SMALL_STATE(1501)] = 61127, - [SMALL_STATE(1502)] = 61144, - [SMALL_STATE(1503)] = 61161, - [SMALL_STATE(1504)] = 61178, - [SMALL_STATE(1505)] = 61195, - [SMALL_STATE(1506)] = 61212, - [SMALL_STATE(1507)] = 61229, - [SMALL_STATE(1508)] = 61246, - [SMALL_STATE(1509)] = 61263, - [SMALL_STATE(1510)] = 61280, - [SMALL_STATE(1511)] = 61297, - [SMALL_STATE(1512)] = 61316, - [SMALL_STATE(1513)] = 61329, - [SMALL_STATE(1514)] = 61346, - [SMALL_STATE(1515)] = 61363, - [SMALL_STATE(1516)] = 61382, - [SMALL_STATE(1517)] = 61399, - [SMALL_STATE(1518)] = 61418, - [SMALL_STATE(1519)] = 61435, - [SMALL_STATE(1520)] = 61452, - [SMALL_STATE(1521)] = 61469, - [SMALL_STATE(1522)] = 61480, - [SMALL_STATE(1523)] = 61497, - [SMALL_STATE(1524)] = 61514, - [SMALL_STATE(1525)] = 61531, - [SMALL_STATE(1526)] = 61548, - [SMALL_STATE(1527)] = 61565, - [SMALL_STATE(1528)] = 61579, - [SMALL_STATE(1529)] = 61595, - [SMALL_STATE(1530)] = 61611, - [SMALL_STATE(1531)] = 61625, - [SMALL_STATE(1532)] = 61641, - [SMALL_STATE(1533)] = 61655, - [SMALL_STATE(1534)] = 61671, - [SMALL_STATE(1535)] = 61687, - [SMALL_STATE(1536)] = 61701, - [SMALL_STATE(1537)] = 61715, - [SMALL_STATE(1538)] = 61731, - [SMALL_STATE(1539)] = 61745, - [SMALL_STATE(1540)] = 61759, - [SMALL_STATE(1541)] = 61775, - [SMALL_STATE(1542)] = 61791, - [SMALL_STATE(1543)] = 61805, - [SMALL_STATE(1544)] = 61821, - [SMALL_STATE(1545)] = 61835, - [SMALL_STATE(1546)] = 61849, - [SMALL_STATE(1547)] = 61863, - [SMALL_STATE(1548)] = 61879, - [SMALL_STATE(1549)] = 61893, - [SMALL_STATE(1550)] = 61907, - [SMALL_STATE(1551)] = 61921, - [SMALL_STATE(1552)] = 61935, - [SMALL_STATE(1553)] = 61947, - [SMALL_STATE(1554)] = 61961, - [SMALL_STATE(1555)] = 61977, - [SMALL_STATE(1556)] = 61993, - [SMALL_STATE(1557)] = 62009, - [SMALL_STATE(1558)] = 62023, - [SMALL_STATE(1559)] = 62039, - [SMALL_STATE(1560)] = 62055, - [SMALL_STATE(1561)] = 62071, - [SMALL_STATE(1562)] = 62085, - [SMALL_STATE(1563)] = 62101, - [SMALL_STATE(1564)] = 62115, - [SMALL_STATE(1565)] = 62129, - [SMALL_STATE(1566)] = 62145, - [SMALL_STATE(1567)] = 62159, - [SMALL_STATE(1568)] = 62175, - [SMALL_STATE(1569)] = 62191, - [SMALL_STATE(1570)] = 62207, - [SMALL_STATE(1571)] = 62223, - [SMALL_STATE(1572)] = 62236, - [SMALL_STATE(1573)] = 62249, - [SMALL_STATE(1574)] = 62262, - [SMALL_STATE(1575)] = 62275, - [SMALL_STATE(1576)] = 62284, - [SMALL_STATE(1577)] = 62297, - [SMALL_STATE(1578)] = 62310, - [SMALL_STATE(1579)] = 62323, - [SMALL_STATE(1580)] = 62336, - [SMALL_STATE(1581)] = 62349, - [SMALL_STATE(1582)] = 62362, - [SMALL_STATE(1583)] = 62375, - [SMALL_STATE(1584)] = 62388, - [SMALL_STATE(1585)] = 62401, - [SMALL_STATE(1586)] = 62410, - [SMALL_STATE(1587)] = 62423, - [SMALL_STATE(1588)] = 62436, - [SMALL_STATE(1589)] = 62449, - [SMALL_STATE(1590)] = 62460, - [SMALL_STATE(1591)] = 62473, - [SMALL_STATE(1592)] = 62482, - [SMALL_STATE(1593)] = 62495, - [SMALL_STATE(1594)] = 62508, - [SMALL_STATE(1595)] = 62521, - [SMALL_STATE(1596)] = 62530, - [SMALL_STATE(1597)] = 62543, - [SMALL_STATE(1598)] = 62556, - [SMALL_STATE(1599)] = 62569, - [SMALL_STATE(1600)] = 62578, - [SMALL_STATE(1601)] = 62591, - [SMALL_STATE(1602)] = 62604, - [SMALL_STATE(1603)] = 62617, - [SMALL_STATE(1604)] = 62630, - [SMALL_STATE(1605)] = 62643, - [SMALL_STATE(1606)] = 62652, - [SMALL_STATE(1607)] = 62665, - [SMALL_STATE(1608)] = 62678, - [SMALL_STATE(1609)] = 62691, - [SMALL_STATE(1610)] = 62704, - [SMALL_STATE(1611)] = 62717, - [SMALL_STATE(1612)] = 62730, - [SMALL_STATE(1613)] = 62743, - [SMALL_STATE(1614)] = 62756, - [SMALL_STATE(1615)] = 62769, - [SMALL_STATE(1616)] = 62782, - [SMALL_STATE(1617)] = 62795, - [SMALL_STATE(1618)] = 62808, - [SMALL_STATE(1619)] = 62821, - [SMALL_STATE(1620)] = 62834, - [SMALL_STATE(1621)] = 62847, - [SMALL_STATE(1622)] = 62860, - [SMALL_STATE(1623)] = 62873, - [SMALL_STATE(1624)] = 62886, - [SMALL_STATE(1625)] = 62899, - [SMALL_STATE(1626)] = 62912, - [SMALL_STATE(1627)] = 62925, - [SMALL_STATE(1628)] = 62938, - [SMALL_STATE(1629)] = 62951, - [SMALL_STATE(1630)] = 62964, - [SMALL_STATE(1631)] = 62977, - [SMALL_STATE(1632)] = 62986, - [SMALL_STATE(1633)] = 62999, - [SMALL_STATE(1634)] = 63012, - [SMALL_STATE(1635)] = 63025, - [SMALL_STATE(1636)] = 63038, - [SMALL_STATE(1637)] = 63051, - [SMALL_STATE(1638)] = 63064, - [SMALL_STATE(1639)] = 63077, - [SMALL_STATE(1640)] = 63090, - [SMALL_STATE(1641)] = 63103, - [SMALL_STATE(1642)] = 63116, - [SMALL_STATE(1643)] = 63129, - [SMALL_STATE(1644)] = 63142, - [SMALL_STATE(1645)] = 63155, - [SMALL_STATE(1646)] = 63168, - [SMALL_STATE(1647)] = 63181, - [SMALL_STATE(1648)] = 63194, - [SMALL_STATE(1649)] = 63207, - [SMALL_STATE(1650)] = 63220, - [SMALL_STATE(1651)] = 63233, - [SMALL_STATE(1652)] = 63246, - [SMALL_STATE(1653)] = 63257, - [SMALL_STATE(1654)] = 63270, - [SMALL_STATE(1655)] = 63283, - [SMALL_STATE(1656)] = 63296, - [SMALL_STATE(1657)] = 63309, - [SMALL_STATE(1658)] = 63322, - [SMALL_STATE(1659)] = 63335, - [SMALL_STATE(1660)] = 63348, - [SMALL_STATE(1661)] = 63361, - [SMALL_STATE(1662)] = 63374, - [SMALL_STATE(1663)] = 63387, - [SMALL_STATE(1664)] = 63400, - [SMALL_STATE(1665)] = 63413, - [SMALL_STATE(1666)] = 63424, - [SMALL_STATE(1667)] = 63437, - [SMALL_STATE(1668)] = 63450, - [SMALL_STATE(1669)] = 63463, - [SMALL_STATE(1670)] = 63476, - [SMALL_STATE(1671)] = 63489, - [SMALL_STATE(1672)] = 63498, - [SMALL_STATE(1673)] = 63511, - [SMALL_STATE(1674)] = 63524, - [SMALL_STATE(1675)] = 63533, - [SMALL_STATE(1676)] = 63544, - [SMALL_STATE(1677)] = 63557, - [SMALL_STATE(1678)] = 63566, - [SMALL_STATE(1679)] = 63579, - [SMALL_STATE(1680)] = 63590, - [SMALL_STATE(1681)] = 63599, - [SMALL_STATE(1682)] = 63612, - [SMALL_STATE(1683)] = 63625, - [SMALL_STATE(1684)] = 63638, - [SMALL_STATE(1685)] = 63651, - [SMALL_STATE(1686)] = 63664, - [SMALL_STATE(1687)] = 63677, - [SMALL_STATE(1688)] = 63687, - [SMALL_STATE(1689)] = 63695, - [SMALL_STATE(1690)] = 63705, - [SMALL_STATE(1691)] = 63715, - [SMALL_STATE(1692)] = 63723, - [SMALL_STATE(1693)] = 63733, - [SMALL_STATE(1694)] = 63743, - [SMALL_STATE(1695)] = 63753, - [SMALL_STATE(1696)] = 63761, - [SMALL_STATE(1697)] = 63771, - [SMALL_STATE(1698)] = 63781, - [SMALL_STATE(1699)] = 63791, - [SMALL_STATE(1700)] = 63801, - [SMALL_STATE(1701)] = 63811, - [SMALL_STATE(1702)] = 63821, - [SMALL_STATE(1703)] = 63831, - [SMALL_STATE(1704)] = 63841, - [SMALL_STATE(1705)] = 63851, - [SMALL_STATE(1706)] = 63861, - [SMALL_STATE(1707)] = 63871, - [SMALL_STATE(1708)] = 63881, - [SMALL_STATE(1709)] = 63891, - [SMALL_STATE(1710)] = 63901, - [SMALL_STATE(1711)] = 63911, - [SMALL_STATE(1712)] = 63921, - [SMALL_STATE(1713)] = 63931, - [SMALL_STATE(1714)] = 63939, - [SMALL_STATE(1715)] = 63947, - [SMALL_STATE(1716)] = 63957, - [SMALL_STATE(1717)] = 63967, - [SMALL_STATE(1718)] = 63977, - [SMALL_STATE(1719)] = 63987, - [SMALL_STATE(1720)] = 63997, - [SMALL_STATE(1721)] = 64007, - [SMALL_STATE(1722)] = 64017, - [SMALL_STATE(1723)] = 64027, - [SMALL_STATE(1724)] = 64037, - [SMALL_STATE(1725)] = 64047, - [SMALL_STATE(1726)] = 64057, - [SMALL_STATE(1727)] = 64067, - [SMALL_STATE(1728)] = 64075, - [SMALL_STATE(1729)] = 64085, - [SMALL_STATE(1730)] = 64093, - [SMALL_STATE(1731)] = 64101, - [SMALL_STATE(1732)] = 64111, - [SMALL_STATE(1733)] = 64121, - [SMALL_STATE(1734)] = 64129, - [SMALL_STATE(1735)] = 64139, - [SMALL_STATE(1736)] = 64149, - [SMALL_STATE(1737)] = 64159, - [SMALL_STATE(1738)] = 64169, - [SMALL_STATE(1739)] = 64179, - [SMALL_STATE(1740)] = 64189, - [SMALL_STATE(1741)] = 64197, - [SMALL_STATE(1742)] = 64207, - [SMALL_STATE(1743)] = 64217, - [SMALL_STATE(1744)] = 64225, - [SMALL_STATE(1745)] = 64235, - [SMALL_STATE(1746)] = 64245, - [SMALL_STATE(1747)] = 64255, - [SMALL_STATE(1748)] = 64265, - [SMALL_STATE(1749)] = 64273, - [SMALL_STATE(1750)] = 64283, - [SMALL_STATE(1751)] = 64293, - [SMALL_STATE(1752)] = 64303, - [SMALL_STATE(1753)] = 64313, - [SMALL_STATE(1754)] = 64323, - [SMALL_STATE(1755)] = 64333, - [SMALL_STATE(1756)] = 64343, - [SMALL_STATE(1757)] = 64351, - [SMALL_STATE(1758)] = 64361, - [SMALL_STATE(1759)] = 64371, - [SMALL_STATE(1760)] = 64381, - [SMALL_STATE(1761)] = 64391, - [SMALL_STATE(1762)] = 64399, - [SMALL_STATE(1763)] = 64409, - [SMALL_STATE(1764)] = 64419, - [SMALL_STATE(1765)] = 64429, - [SMALL_STATE(1766)] = 64439, - [SMALL_STATE(1767)] = 64449, - [SMALL_STATE(1768)] = 64459, - [SMALL_STATE(1769)] = 64469, - [SMALL_STATE(1770)] = 64477, - [SMALL_STATE(1771)] = 64485, - [SMALL_STATE(1772)] = 64495, - [SMALL_STATE(1773)] = 64503, - [SMALL_STATE(1774)] = 64513, - [SMALL_STATE(1775)] = 64521, - [SMALL_STATE(1776)] = 64528, - [SMALL_STATE(1777)] = 64535, - [SMALL_STATE(1778)] = 64542, - [SMALL_STATE(1779)] = 64549, - [SMALL_STATE(1780)] = 64556, - [SMALL_STATE(1781)] = 64563, - [SMALL_STATE(1782)] = 64570, - [SMALL_STATE(1783)] = 64577, - [SMALL_STATE(1784)] = 64584, - [SMALL_STATE(1785)] = 64591, - [SMALL_STATE(1786)] = 64598, - [SMALL_STATE(1787)] = 64605, - [SMALL_STATE(1788)] = 64612, - [SMALL_STATE(1789)] = 64619, - [SMALL_STATE(1790)] = 64626, - [SMALL_STATE(1791)] = 64633, - [SMALL_STATE(1792)] = 64640, - [SMALL_STATE(1793)] = 64647, - [SMALL_STATE(1794)] = 64654, - [SMALL_STATE(1795)] = 64661, - [SMALL_STATE(1796)] = 64668, - [SMALL_STATE(1797)] = 64675, - [SMALL_STATE(1798)] = 64682, - [SMALL_STATE(1799)] = 64689, - [SMALL_STATE(1800)] = 64696, - [SMALL_STATE(1801)] = 64703, - [SMALL_STATE(1802)] = 64710, - [SMALL_STATE(1803)] = 64717, - [SMALL_STATE(1804)] = 64724, - [SMALL_STATE(1805)] = 64731, - [SMALL_STATE(1806)] = 64738, - [SMALL_STATE(1807)] = 64745, - [SMALL_STATE(1808)] = 64752, - [SMALL_STATE(1809)] = 64759, - [SMALL_STATE(1810)] = 64766, - [SMALL_STATE(1811)] = 64773, - [SMALL_STATE(1812)] = 64780, - [SMALL_STATE(1813)] = 64787, - [SMALL_STATE(1814)] = 64794, - [SMALL_STATE(1815)] = 64801, - [SMALL_STATE(1816)] = 64808, - [SMALL_STATE(1817)] = 64815, - [SMALL_STATE(1818)] = 64822, - [SMALL_STATE(1819)] = 64829, - [SMALL_STATE(1820)] = 64836, - [SMALL_STATE(1821)] = 64843, - [SMALL_STATE(1822)] = 64850, - [SMALL_STATE(1823)] = 64857, - [SMALL_STATE(1824)] = 64864, - [SMALL_STATE(1825)] = 64871, - [SMALL_STATE(1826)] = 64878, - [SMALL_STATE(1827)] = 64885, - [SMALL_STATE(1828)] = 64892, - [SMALL_STATE(1829)] = 64899, - [SMALL_STATE(1830)] = 64906, - [SMALL_STATE(1831)] = 64913, - [SMALL_STATE(1832)] = 64920, - [SMALL_STATE(1833)] = 64927, - [SMALL_STATE(1834)] = 64934, - [SMALL_STATE(1835)] = 64941, - [SMALL_STATE(1836)] = 64948, - [SMALL_STATE(1837)] = 64955, - [SMALL_STATE(1838)] = 64962, - [SMALL_STATE(1839)] = 64969, - [SMALL_STATE(1840)] = 64976, - [SMALL_STATE(1841)] = 64983, - [SMALL_STATE(1842)] = 64990, - [SMALL_STATE(1843)] = 64997, - [SMALL_STATE(1844)] = 65004, - [SMALL_STATE(1845)] = 65011, - [SMALL_STATE(1846)] = 65018, - [SMALL_STATE(1847)] = 65025, - [SMALL_STATE(1848)] = 65032, - [SMALL_STATE(1849)] = 65039, - [SMALL_STATE(1850)] = 65046, - [SMALL_STATE(1851)] = 65053, - [SMALL_STATE(1852)] = 65060, - [SMALL_STATE(1853)] = 65067, - [SMALL_STATE(1854)] = 65074, - [SMALL_STATE(1855)] = 65081, - [SMALL_STATE(1856)] = 65088, - [SMALL_STATE(1857)] = 65095, - [SMALL_STATE(1858)] = 65102, - [SMALL_STATE(1859)] = 65109, - [SMALL_STATE(1860)] = 65116, - [SMALL_STATE(1861)] = 65123, - [SMALL_STATE(1862)] = 65130, - [SMALL_STATE(1863)] = 65137, - [SMALL_STATE(1864)] = 65144, - [SMALL_STATE(1865)] = 65151, - [SMALL_STATE(1866)] = 65158, - [SMALL_STATE(1867)] = 65165, - [SMALL_STATE(1868)] = 65172, - [SMALL_STATE(1869)] = 65179, - [SMALL_STATE(1870)] = 65186, - [SMALL_STATE(1871)] = 65193, - [SMALL_STATE(1872)] = 65200, - [SMALL_STATE(1873)] = 65207, - [SMALL_STATE(1874)] = 65214, - [SMALL_STATE(1875)] = 65221, - [SMALL_STATE(1876)] = 65228, - [SMALL_STATE(1877)] = 65235, - [SMALL_STATE(1878)] = 65242, - [SMALL_STATE(1879)] = 65249, - [SMALL_STATE(1880)] = 65256, - [SMALL_STATE(1881)] = 65263, - [SMALL_STATE(1882)] = 65270, - [SMALL_STATE(1883)] = 65277, - [SMALL_STATE(1884)] = 65284, - [SMALL_STATE(1885)] = 65291, - [SMALL_STATE(1886)] = 65298, - [SMALL_STATE(1887)] = 65305, - [SMALL_STATE(1888)] = 65312, - [SMALL_STATE(1889)] = 65319, - [SMALL_STATE(1890)] = 65326, - [SMALL_STATE(1891)] = 65333, - [SMALL_STATE(1892)] = 65340, - [SMALL_STATE(1893)] = 65347, - [SMALL_STATE(1894)] = 65354, - [SMALL_STATE(1895)] = 65361, - [SMALL_STATE(1896)] = 65368, - [SMALL_STATE(1897)] = 65375, - [SMALL_STATE(1898)] = 65382, - [SMALL_STATE(1899)] = 65389, - [SMALL_STATE(1900)] = 65396, - [SMALL_STATE(1901)] = 65403, - [SMALL_STATE(1902)] = 65410, - [SMALL_STATE(1903)] = 65417, - [SMALL_STATE(1904)] = 65424, - [SMALL_STATE(1905)] = 65431, - [SMALL_STATE(1906)] = 65438, - [SMALL_STATE(1907)] = 65445, - [SMALL_STATE(1908)] = 65452, - [SMALL_STATE(1909)] = 65459, - [SMALL_STATE(1910)] = 65466, - [SMALL_STATE(1911)] = 65473, - [SMALL_STATE(1912)] = 65480, - [SMALL_STATE(1913)] = 65487, - [SMALL_STATE(1914)] = 65494, - [SMALL_STATE(1915)] = 65501, - [SMALL_STATE(1916)] = 65508, - [SMALL_STATE(1917)] = 65515, - [SMALL_STATE(1918)] = 65522, - [SMALL_STATE(1919)] = 65529, - [SMALL_STATE(1920)] = 65536, - [SMALL_STATE(1921)] = 65543, - [SMALL_STATE(1922)] = 65550, - [SMALL_STATE(1923)] = 65557, - [SMALL_STATE(1924)] = 65564, - [SMALL_STATE(1925)] = 65571, - [SMALL_STATE(1926)] = 65578, - [SMALL_STATE(1927)] = 65585, - [SMALL_STATE(1928)] = 65592, - [SMALL_STATE(1929)] = 65599, - [SMALL_STATE(1930)] = 65606, - [SMALL_STATE(1931)] = 65613, - [SMALL_STATE(1932)] = 65620, - [SMALL_STATE(1933)] = 65627, - [SMALL_STATE(1934)] = 65634, - [SMALL_STATE(1935)] = 65641, - [SMALL_STATE(1936)] = 65648, - [SMALL_STATE(1937)] = 65655, - [SMALL_STATE(1938)] = 65662, - [SMALL_STATE(1939)] = 65669, - [SMALL_STATE(1940)] = 65676, - [SMALL_STATE(1941)] = 65683, - [SMALL_STATE(1942)] = 65690, - [SMALL_STATE(1943)] = 65697, - [SMALL_STATE(1944)] = 65704, - [SMALL_STATE(1945)] = 65711, - [SMALL_STATE(1946)] = 65718, - [SMALL_STATE(1947)] = 65725, - [SMALL_STATE(1948)] = 65732, - [SMALL_STATE(1949)] = 65739, - [SMALL_STATE(1950)] = 65746, - [SMALL_STATE(1951)] = 65753, - [SMALL_STATE(1952)] = 65760, - [SMALL_STATE(1953)] = 65767, - [SMALL_STATE(1954)] = 65774, - [SMALL_STATE(1955)] = 65781, - [SMALL_STATE(1956)] = 65788, - [SMALL_STATE(1957)] = 65795, - [SMALL_STATE(1958)] = 65802, - [SMALL_STATE(1959)] = 65809, - [SMALL_STATE(1960)] = 65816, - [SMALL_STATE(1961)] = 65823, - [SMALL_STATE(1962)] = 65830, - [SMALL_STATE(1963)] = 65837, - [SMALL_STATE(1964)] = 65844, - [SMALL_STATE(1965)] = 65851, - [SMALL_STATE(1966)] = 65858, - [SMALL_STATE(1967)] = 65865, - [SMALL_STATE(1968)] = 65872, - [SMALL_STATE(1969)] = 65879, - [SMALL_STATE(1970)] = 65886, - [SMALL_STATE(1971)] = 65893, - [SMALL_STATE(1972)] = 65900, - [SMALL_STATE(1973)] = 65907, - [SMALL_STATE(1974)] = 65914, - [SMALL_STATE(1975)] = 65921, - [SMALL_STATE(1976)] = 65928, - [SMALL_STATE(1977)] = 65935, - [SMALL_STATE(1978)] = 65942, - [SMALL_STATE(1979)] = 65949, - [SMALL_STATE(1980)] = 65956, - [SMALL_STATE(1981)] = 65963, - [SMALL_STATE(1982)] = 65970, - [SMALL_STATE(1983)] = 65977, - [SMALL_STATE(1984)] = 65984, - [SMALL_STATE(1985)] = 65991, - [SMALL_STATE(1986)] = 65998, - [SMALL_STATE(1987)] = 66005, - [SMALL_STATE(1988)] = 66012, - [SMALL_STATE(1989)] = 66019, - [SMALL_STATE(1990)] = 66026, - [SMALL_STATE(1991)] = 66033, - [SMALL_STATE(1992)] = 66040, - [SMALL_STATE(1993)] = 66047, - [SMALL_STATE(1994)] = 66054, - [SMALL_STATE(1995)] = 66061, - [SMALL_STATE(1996)] = 66068, - [SMALL_STATE(1997)] = 66075, - [SMALL_STATE(1998)] = 66082, - [SMALL_STATE(1999)] = 66089, - [SMALL_STATE(2000)] = 66096, - [SMALL_STATE(2001)] = 66103, - [SMALL_STATE(2002)] = 66110, - [SMALL_STATE(2003)] = 66117, - [SMALL_STATE(2004)] = 66124, - [SMALL_STATE(2005)] = 66131, - [SMALL_STATE(2006)] = 66138, - [SMALL_STATE(2007)] = 66145, - [SMALL_STATE(2008)] = 66152, - [SMALL_STATE(2009)] = 66159, - [SMALL_STATE(2010)] = 66166, - [SMALL_STATE(2011)] = 66173, - [SMALL_STATE(2012)] = 66180, - [SMALL_STATE(2013)] = 66187, - [SMALL_STATE(2014)] = 66194, - [SMALL_STATE(2015)] = 66201, - [SMALL_STATE(2016)] = 66208, - [SMALL_STATE(2017)] = 66215, - [SMALL_STATE(2018)] = 66222, - [SMALL_STATE(2019)] = 66229, - [SMALL_STATE(2020)] = 66236, - [SMALL_STATE(2021)] = 66243, - [SMALL_STATE(2022)] = 66250, + [SMALL_STATE(643)] = 0, + [SMALL_STATE(644)] = 113, + [SMALL_STATE(645)] = 226, + [SMALL_STATE(646)] = 339, + [SMALL_STATE(647)] = 452, + [SMALL_STATE(648)] = 565, + [SMALL_STATE(649)] = 678, + [SMALL_STATE(650)] = 791, + [SMALL_STATE(651)] = 904, + [SMALL_STATE(652)] = 1017, + [SMALL_STATE(653)] = 1130, + [SMALL_STATE(654)] = 1243, + [SMALL_STATE(655)] = 1356, + [SMALL_STATE(656)] = 1469, + [SMALL_STATE(657)] = 1582, + [SMALL_STATE(658)] = 1695, + [SMALL_STATE(659)] = 1808, + [SMALL_STATE(660)] = 1921, + [SMALL_STATE(661)] = 2034, + [SMALL_STATE(662)] = 2147, + [SMALL_STATE(663)] = 2260, + [SMALL_STATE(664)] = 2373, + [SMALL_STATE(665)] = 2486, + [SMALL_STATE(666)] = 2599, + [SMALL_STATE(667)] = 2712, + [SMALL_STATE(668)] = 2825, + [SMALL_STATE(669)] = 2938, + [SMALL_STATE(670)] = 3051, + [SMALL_STATE(671)] = 3164, + [SMALL_STATE(672)] = 3277, + [SMALL_STATE(673)] = 3390, + [SMALL_STATE(674)] = 3503, + [SMALL_STATE(675)] = 3616, + [SMALL_STATE(676)] = 3726, + [SMALL_STATE(677)] = 3836, + [SMALL_STATE(678)] = 3946, + [SMALL_STATE(679)] = 4056, + [SMALL_STATE(680)] = 4166, + [SMALL_STATE(681)] = 4276, + [SMALL_STATE(682)] = 4386, + [SMALL_STATE(683)] = 4496, + [SMALL_STATE(684)] = 4606, + [SMALL_STATE(685)] = 4716, + [SMALL_STATE(686)] = 4826, + [SMALL_STATE(687)] = 4936, + [SMALL_STATE(688)] = 5046, + [SMALL_STATE(689)] = 5156, + [SMALL_STATE(690)] = 5266, + [SMALL_STATE(691)] = 5376, + [SMALL_STATE(692)] = 5486, + [SMALL_STATE(693)] = 5577, + [SMALL_STATE(694)] = 5684, + [SMALL_STATE(695)] = 5791, + [SMALL_STATE(696)] = 5898, + [SMALL_STATE(697)] = 6005, + [SMALL_STATE(698)] = 6112, + [SMALL_STATE(699)] = 6219, + [SMALL_STATE(700)] = 6326, + [SMALL_STATE(701)] = 6433, + [SMALL_STATE(702)] = 6540, + [SMALL_STATE(703)] = 6647, + [SMALL_STATE(704)] = 6754, + [SMALL_STATE(705)] = 6861, + [SMALL_STATE(706)] = 6968, + [SMALL_STATE(707)] = 7075, + [SMALL_STATE(708)] = 7182, + [SMALL_STATE(709)] = 7289, + [SMALL_STATE(710)] = 7396, + [SMALL_STATE(711)] = 7503, + [SMALL_STATE(712)] = 7610, + [SMALL_STATE(713)] = 7717, + [SMALL_STATE(714)] = 7824, + [SMALL_STATE(715)] = 7931, + [SMALL_STATE(716)] = 8038, + [SMALL_STATE(717)] = 8145, + [SMALL_STATE(718)] = 8252, + [SMALL_STATE(719)] = 8359, + [SMALL_STATE(720)] = 8466, + [SMALL_STATE(721)] = 8573, + [SMALL_STATE(722)] = 8680, + [SMALL_STATE(723)] = 8787, + [SMALL_STATE(724)] = 8894, + [SMALL_STATE(725)] = 9001, + [SMALL_STATE(726)] = 9108, + [SMALL_STATE(727)] = 9215, + [SMALL_STATE(728)] = 9322, + [SMALL_STATE(729)] = 9429, + [SMALL_STATE(730)] = 9536, + [SMALL_STATE(731)] = 9643, + [SMALL_STATE(732)] = 9750, + [SMALL_STATE(733)] = 9857, + [SMALL_STATE(734)] = 9964, + [SMALL_STATE(735)] = 10071, + [SMALL_STATE(736)] = 10178, + [SMALL_STATE(737)] = 10285, + [SMALL_STATE(738)] = 10392, + [SMALL_STATE(739)] = 10499, + [SMALL_STATE(740)] = 10606, + [SMALL_STATE(741)] = 10713, + [SMALL_STATE(742)] = 10820, + [SMALL_STATE(743)] = 10927, + [SMALL_STATE(744)] = 11034, + [SMALL_STATE(745)] = 11141, + [SMALL_STATE(746)] = 11248, + [SMALL_STATE(747)] = 11355, + [SMALL_STATE(748)] = 11462, + [SMALL_STATE(749)] = 11569, + [SMALL_STATE(750)] = 11676, + [SMALL_STATE(751)] = 11783, + [SMALL_STATE(752)] = 11890, + [SMALL_STATE(753)] = 11997, + [SMALL_STATE(754)] = 12104, + [SMALL_STATE(755)] = 12211, + [SMALL_STATE(756)] = 12318, + [SMALL_STATE(757)] = 12425, + [SMALL_STATE(758)] = 12532, + [SMALL_STATE(759)] = 12639, + [SMALL_STATE(760)] = 12746, + [SMALL_STATE(761)] = 12853, + [SMALL_STATE(762)] = 12960, + [SMALL_STATE(763)] = 13067, + [SMALL_STATE(764)] = 13174, + [SMALL_STATE(765)] = 13281, + [SMALL_STATE(766)] = 13388, + [SMALL_STATE(767)] = 13495, + [SMALL_STATE(768)] = 13602, + [SMALL_STATE(769)] = 13709, + [SMALL_STATE(770)] = 13816, + [SMALL_STATE(771)] = 13923, + [SMALL_STATE(772)] = 14030, + [SMALL_STATE(773)] = 14137, + [SMALL_STATE(774)] = 14244, + [SMALL_STATE(775)] = 14351, + [SMALL_STATE(776)] = 14458, + [SMALL_STATE(777)] = 14565, + [SMALL_STATE(778)] = 14672, + [SMALL_STATE(779)] = 14779, + [SMALL_STATE(780)] = 14886, + [SMALL_STATE(781)] = 14993, + [SMALL_STATE(782)] = 15100, + [SMALL_STATE(783)] = 15207, + [SMALL_STATE(784)] = 15314, + [SMALL_STATE(785)] = 15421, + [SMALL_STATE(786)] = 15528, + [SMALL_STATE(787)] = 15635, + [SMALL_STATE(788)] = 15742, + [SMALL_STATE(789)] = 15849, + [SMALL_STATE(790)] = 15956, + [SMALL_STATE(791)] = 16063, + [SMALL_STATE(792)] = 16170, + [SMALL_STATE(793)] = 16277, + [SMALL_STATE(794)] = 16384, + [SMALL_STATE(795)] = 16491, + [SMALL_STATE(796)] = 16598, + [SMALL_STATE(797)] = 16705, + [SMALL_STATE(798)] = 16812, + [SMALL_STATE(799)] = 16919, + [SMALL_STATE(800)] = 17026, + [SMALL_STATE(801)] = 17133, + [SMALL_STATE(802)] = 17240, + [SMALL_STATE(803)] = 17347, + [SMALL_STATE(804)] = 17454, + [SMALL_STATE(805)] = 17561, + [SMALL_STATE(806)] = 17668, + [SMALL_STATE(807)] = 17775, + [SMALL_STATE(808)] = 17882, + [SMALL_STATE(809)] = 17989, + [SMALL_STATE(810)] = 18096, + [SMALL_STATE(811)] = 18203, + [SMALL_STATE(812)] = 18310, + [SMALL_STATE(813)] = 18417, + [SMALL_STATE(814)] = 18524, + [SMALL_STATE(815)] = 18631, + [SMALL_STATE(816)] = 18738, + [SMALL_STATE(817)] = 18845, + [SMALL_STATE(818)] = 18952, + [SMALL_STATE(819)] = 19059, + [SMALL_STATE(820)] = 19166, + [SMALL_STATE(821)] = 19273, + [SMALL_STATE(822)] = 19380, + [SMALL_STATE(823)] = 19487, + [SMALL_STATE(824)] = 19594, + [SMALL_STATE(825)] = 19701, + [SMALL_STATE(826)] = 19808, + [SMALL_STATE(827)] = 19915, + [SMALL_STATE(828)] = 20022, + [SMALL_STATE(829)] = 20129, + [SMALL_STATE(830)] = 20236, + [SMALL_STATE(831)] = 20343, + [SMALL_STATE(832)] = 20450, + [SMALL_STATE(833)] = 20557, + [SMALL_STATE(834)] = 20664, + [SMALL_STATE(835)] = 20771, + [SMALL_STATE(836)] = 20878, + [SMALL_STATE(837)] = 20985, + [SMALL_STATE(838)] = 21092, + [SMALL_STATE(839)] = 21199, + [SMALL_STATE(840)] = 21306, + [SMALL_STATE(841)] = 21413, + [SMALL_STATE(842)] = 21520, + [SMALL_STATE(843)] = 21627, + [SMALL_STATE(844)] = 21734, + [SMALL_STATE(845)] = 21841, + [SMALL_STATE(846)] = 21948, + [SMALL_STATE(847)] = 22055, + [SMALL_STATE(848)] = 22162, + [SMALL_STATE(849)] = 22269, + [SMALL_STATE(850)] = 22376, + [SMALL_STATE(851)] = 22483, + [SMALL_STATE(852)] = 22590, + [SMALL_STATE(853)] = 22697, + [SMALL_STATE(854)] = 22769, + [SMALL_STATE(855)] = 22841, + [SMALL_STATE(856)] = 22913, + [SMALL_STATE(857)] = 23022, + [SMALL_STATE(858)] = 23091, + [SMALL_STATE(859)] = 23198, + [SMALL_STATE(860)] = 23264, + [SMALL_STATE(861)] = 23328, + [SMALL_STATE(862)] = 23392, + [SMALL_STATE(863)] = 23456, + [SMALL_STATE(864)] = 23520, + [SMALL_STATE(865)] = 23584, + [SMALL_STATE(866)] = 23648, + [SMALL_STATE(867)] = 23712, + [SMALL_STATE(868)] = 23776, + [SMALL_STATE(869)] = 23840, + [SMALL_STATE(870)] = 23904, + [SMALL_STATE(871)] = 23968, + [SMALL_STATE(872)] = 24032, + [SMALL_STATE(873)] = 24133, + [SMALL_STATE(874)] = 24234, + [SMALL_STATE(875)] = 24335, + [SMALL_STATE(876)] = 24436, + [SMALL_STATE(877)] = 24537, + [SMALL_STATE(878)] = 24638, + [SMALL_STATE(879)] = 24739, + [SMALL_STATE(880)] = 24840, + [SMALL_STATE(881)] = 24941, + [SMALL_STATE(882)] = 25042, + [SMALL_STATE(883)] = 25143, + [SMALL_STATE(884)] = 25244, + [SMALL_STATE(885)] = 25345, + [SMALL_STATE(886)] = 25446, + [SMALL_STATE(887)] = 25547, + [SMALL_STATE(888)] = 25648, + [SMALL_STATE(889)] = 25746, + [SMALL_STATE(890)] = 25846, + [SMALL_STATE(891)] = 25908, + [SMALL_STATE(892)] = 26006, + [SMALL_STATE(893)] = 26077, + [SMALL_STATE(894)] = 26138, + [SMALL_STATE(895)] = 26200, + [SMALL_STATE(896)] = 26260, + [SMALL_STATE(897)] = 26326, + [SMALL_STATE(898)] = 26385, + [SMALL_STATE(899)] = 26444, + [SMALL_STATE(900)] = 26535, + [SMALL_STATE(901)] = 26594, + [SMALL_STATE(902)] = 26653, + [SMALL_STATE(903)] = 26712, + [SMALL_STATE(904)] = 26771, + [SMALL_STATE(905)] = 26830, + [SMALL_STATE(906)] = 26889, + [SMALL_STATE(907)] = 26948, + [SMALL_STATE(908)] = 27039, + [SMALL_STATE(909)] = 27098, + [SMALL_STATE(910)] = 27157, + [SMALL_STATE(911)] = 27216, + [SMALL_STATE(912)] = 27275, + [SMALL_STATE(913)] = 27334, + [SMALL_STATE(914)] = 27393, + [SMALL_STATE(915)] = 27452, + [SMALL_STATE(916)] = 27511, + [SMALL_STATE(917)] = 27602, + [SMALL_STATE(918)] = 27693, + [SMALL_STATE(919)] = 27784, + [SMALL_STATE(920)] = 27875, + [SMALL_STATE(921)] = 27966, + [SMALL_STATE(922)] = 28057, + [SMALL_STATE(923)] = 28145, + [SMALL_STATE(924)] = 28213, + [SMALL_STATE(925)] = 28271, + [SMALL_STATE(926)] = 28339, + [SMALL_STATE(927)] = 28407, + [SMALL_STATE(928)] = 28465, + [SMALL_STATE(929)] = 28533, + [SMALL_STATE(930)] = 28621, + [SMALL_STATE(931)] = 28679, + [SMALL_STATE(932)] = 28737, + [SMALL_STATE(933)] = 28803, + [SMALL_STATE(934)] = 28871, + [SMALL_STATE(935)] = 28936, + [SMALL_STATE(936)] = 29001, + [SMALL_STATE(937)] = 29066, + [SMALL_STATE(938)] = 29123, + [SMALL_STATE(939)] = 29180, + [SMALL_STATE(940)] = 29245, + [SMALL_STATE(941)] = 29310, + [SMALL_STATE(942)] = 29371, + [SMALL_STATE(943)] = 29444, + [SMALL_STATE(944)] = 29509, + [SMALL_STATE(945)] = 29574, + [SMALL_STATE(946)] = 29646, + [SMALL_STATE(947)] = 29702, + [SMALL_STATE(948)] = 29774, + [SMALL_STATE(949)] = 29830, + [SMALL_STATE(950)] = 29902, + [SMALL_STATE(951)] = 29974, + [SMALL_STATE(952)] = 30046, + [SMALL_STATE(953)] = 30105, + [SMALL_STATE(954)] = 30164, + [SMALL_STATE(955)] = 30219, + [SMALL_STATE(956)] = 30278, + [SMALL_STATE(957)] = 30337, + [SMALL_STATE(958)] = 30396, + [SMALL_STATE(959)] = 30459, + [SMALL_STATE(960)] = 30518, + [SMALL_STATE(961)] = 30577, + [SMALL_STATE(962)] = 30636, + [SMALL_STATE(963)] = 30695, + [SMALL_STATE(964)] = 30754, + [SMALL_STATE(965)] = 30813, + [SMALL_STATE(966)] = 30867, + [SMALL_STATE(967)] = 30925, + [SMALL_STATE(968)] = 30979, + [SMALL_STATE(969)] = 31037, + [SMALL_STATE(970)] = 31091, + [SMALL_STATE(971)] = 31149, + [SMALL_STATE(972)] = 31219, + [SMALL_STATE(973)] = 31277, + [SMALL_STATE(974)] = 31335, + [SMALL_STATE(975)] = 31389, + [SMALL_STATE(976)] = 31443, + [SMALL_STATE(977)] = 31501, + [SMALL_STATE(978)] = 31561, + [SMALL_STATE(979)] = 31619, + [SMALL_STATE(980)] = 31673, + [SMALL_STATE(981)] = 31731, + [SMALL_STATE(982)] = 31785, + [SMALL_STATE(983)] = 31839, + [SMALL_STATE(984)] = 31893, + [SMALL_STATE(985)] = 31947, + [SMALL_STATE(986)] = 32001, + [SMALL_STATE(987)] = 32055, + [SMALL_STATE(988)] = 32109, + [SMALL_STATE(989)] = 32163, + [SMALL_STATE(990)] = 32217, + [SMALL_STATE(991)] = 32271, + [SMALL_STATE(992)] = 32325, + [SMALL_STATE(993)] = 32379, + [SMALL_STATE(994)] = 32433, + [SMALL_STATE(995)] = 32491, + [SMALL_STATE(996)] = 32545, + [SMALL_STATE(997)] = 32599, + [SMALL_STATE(998)] = 32653, + [SMALL_STATE(999)] = 32707, + [SMALL_STATE(1000)] = 32761, + [SMALL_STATE(1001)] = 32815, + [SMALL_STATE(1002)] = 32869, + [SMALL_STATE(1003)] = 32927, + [SMALL_STATE(1004)] = 32985, + [SMALL_STATE(1005)] = 33039, + [SMALL_STATE(1006)] = 33093, + [SMALL_STATE(1007)] = 33156, + [SMALL_STATE(1008)] = 33219, + [SMALL_STATE(1009)] = 33272, + [SMALL_STATE(1010)] = 33343, + [SMALL_STATE(1011)] = 33398, + [SMALL_STATE(1012)] = 33451, + [SMALL_STATE(1013)] = 33514, + [SMALL_STATE(1014)] = 33585, + [SMALL_STATE(1015)] = 33638, + [SMALL_STATE(1016)] = 33701, + [SMALL_STATE(1017)] = 33754, + [SMALL_STATE(1018)] = 33815, + [SMALL_STATE(1019)] = 33906, + [SMALL_STATE(1020)] = 33969, + [SMALL_STATE(1021)] = 34022, + [SMALL_STATE(1022)] = 34085, + [SMALL_STATE(1023)] = 34138, + [SMALL_STATE(1024)] = 34201, + [SMALL_STATE(1025)] = 34264, + [SMALL_STATE(1026)] = 34327, + [SMALL_STATE(1027)] = 34418, + [SMALL_STATE(1028)] = 34471, + [SMALL_STATE(1029)] = 34524, + [SMALL_STATE(1030)] = 34577, + [SMALL_STATE(1031)] = 34630, + [SMALL_STATE(1032)] = 34683, + [SMALL_STATE(1033)] = 34736, + [SMALL_STATE(1034)] = 34805, + [SMALL_STATE(1035)] = 34858, + [SMALL_STATE(1036)] = 34929, + [SMALL_STATE(1037)] = 34982, + [SMALL_STATE(1038)] = 35053, + [SMALL_STATE(1039)] = 35106, + [SMALL_STATE(1040)] = 35159, + [SMALL_STATE(1041)] = 35222, + [SMALL_STATE(1042)] = 35275, + [SMALL_STATE(1043)] = 35328, + [SMALL_STATE(1044)] = 35391, + [SMALL_STATE(1045)] = 35477, + [SMALL_STATE(1046)] = 35551, + [SMALL_STATE(1047)] = 35611, + [SMALL_STATE(1048)] = 35695, + [SMALL_STATE(1049)] = 35781, + [SMALL_STATE(1050)] = 35867, + [SMALL_STATE(1051)] = 35953, + [SMALL_STATE(1052)] = 36037, + [SMALL_STATE(1053)] = 36095, + [SMALL_STATE(1054)] = 36159, + [SMALL_STATE(1055)] = 36241, + [SMALL_STATE(1056)] = 36321, + [SMALL_STATE(1057)] = 36399, + [SMALL_STATE(1058)] = 36475, + [SMALL_STATE(1059)] = 36549, + [SMALL_STATE(1060)] = 36621, + [SMALL_STATE(1061)] = 36689, + [SMALL_STATE(1062)] = 36755, + [SMALL_STATE(1063)] = 36815, + [SMALL_STATE(1064)] = 36881, + [SMALL_STATE(1065)] = 36945, + [SMALL_STATE(1066)] = 37031, + [SMALL_STATE(1067)] = 37113, + [SMALL_STATE(1068)] = 37175, + [SMALL_STATE(1069)] = 37243, + [SMALL_STATE(1070)] = 37301, + [SMALL_STATE(1071)] = 37381, + [SMALL_STATE(1072)] = 37467, + [SMALL_STATE(1073)] = 37545, + [SMALL_STATE(1074)] = 37621, + [SMALL_STATE(1075)] = 37693, + [SMALL_STATE(1076)] = 37758, + [SMALL_STATE(1077)] = 37815, + [SMALL_STATE(1078)] = 37882, + [SMALL_STATE(1079)] = 37941, + [SMALL_STATE(1080)] = 37996, + [SMALL_STATE(1081)] = 38055, + [SMALL_STATE(1082)] = 38110, + [SMALL_STATE(1083)] = 38160, + [SMALL_STATE(1084)] = 38216, + [SMALL_STATE(1085)] = 38302, + [SMALL_STATE(1086)] = 38356, + [SMALL_STATE(1087)] = 38442, + [SMALL_STATE(1088)] = 38492, + [SMALL_STATE(1089)] = 38545, + [SMALL_STATE(1090)] = 38594, + [SMALL_STATE(1091)] = 38643, + [SMALL_STATE(1092)] = 38692, + [SMALL_STATE(1093)] = 38741, + [SMALL_STATE(1094)] = 38790, + [SMALL_STATE(1095)] = 38839, + [SMALL_STATE(1096)] = 38888, + [SMALL_STATE(1097)] = 38937, + [SMALL_STATE(1098)] = 38990, + [SMALL_STATE(1099)] = 39039, + [SMALL_STATE(1100)] = 39088, + [SMALL_STATE(1101)] = 39137, + [SMALL_STATE(1102)] = 39186, + [SMALL_STATE(1103)] = 39235, + [SMALL_STATE(1104)] = 39288, + [SMALL_STATE(1105)] = 39337, + [SMALL_STATE(1106)] = 39386, + [SMALL_STATE(1107)] = 39435, + [SMALL_STATE(1108)] = 39488, + [SMALL_STATE(1109)] = 39537, + [SMALL_STATE(1110)] = 39586, + [SMALL_STATE(1111)] = 39635, + [SMALL_STATE(1112)] = 39684, + [SMALL_STATE(1113)] = 39733, + [SMALL_STATE(1114)] = 39782, + [SMALL_STATE(1115)] = 39831, + [SMALL_STATE(1116)] = 39880, + [SMALL_STATE(1117)] = 39929, + [SMALL_STATE(1118)] = 39978, + [SMALL_STATE(1119)] = 40027, + [SMALL_STATE(1120)] = 40076, + [SMALL_STATE(1121)] = 40125, + [SMALL_STATE(1122)] = 40174, + [SMALL_STATE(1123)] = 40223, + [SMALL_STATE(1124)] = 40272, + [SMALL_STATE(1125)] = 40321, + [SMALL_STATE(1126)] = 40370, + [SMALL_STATE(1127)] = 40419, + [SMALL_STATE(1128)] = 40468, + [SMALL_STATE(1129)] = 40522, + [SMALL_STATE(1130)] = 40574, + [SMALL_STATE(1131)] = 40622, + [SMALL_STATE(1132)] = 40673, + [SMALL_STATE(1133)] = 40722, + [SMALL_STATE(1134)] = 40801, + [SMALL_STATE(1135)] = 40878, + [SMALL_STATE(1136)] = 40953, + [SMALL_STATE(1137)] = 41026, + [SMALL_STATE(1138)] = 41085, + [SMALL_STATE(1139)] = 41168, + [SMALL_STATE(1140)] = 41245, + [SMALL_STATE(1141)] = 41302, + [SMALL_STATE(1142)] = 41361, + [SMALL_STATE(1143)] = 41420, + [SMALL_STATE(1144)] = 41491, + [SMALL_STATE(1145)] = 41560, + [SMALL_STATE(1146)] = 41625, + [SMALL_STATE(1147)] = 41702, + [SMALL_STATE(1148)] = 41761, + [SMALL_STATE(1149)] = 41810, + [SMALL_STATE(1150)] = 41891, + [SMALL_STATE(1151)] = 41950, + [SMALL_STATE(1152)] = 42033, + [SMALL_STATE(1153)] = 42110, + [SMALL_STATE(1154)] = 42173, + [SMALL_STATE(1155)] = 42250, + [SMALL_STATE(1156)] = 42309, + [SMALL_STATE(1157)] = 42368, + [SMALL_STATE(1158)] = 42429, + [SMALL_STATE(1159)] = 42512, + [SMALL_STATE(1160)] = 42568, + [SMALL_STATE(1161)] = 42622, + [SMALL_STATE(1162)] = 42672, + [SMALL_STATE(1163)] = 42718, + [SMALL_STATE(1164)] = 42764, + [SMALL_STATE(1165)] = 42810, + [SMALL_STATE(1166)] = 42860, + [SMALL_STATE(1167)] = 42914, + [SMALL_STATE(1168)] = 42989, + [SMALL_STATE(1169)] = 43038, + [SMALL_STATE(1170)] = 43085, + [SMALL_STATE(1171)] = 43136, + [SMALL_STATE(1172)] = 43211, + [SMALL_STATE(1173)] = 43260, + [SMALL_STATE(1174)] = 43307, + [SMALL_STATE(1175)] = 43351, + [SMALL_STATE(1176)] = 43395, + [SMALL_STATE(1177)] = 43439, + [SMALL_STATE(1178)] = 43483, + [SMALL_STATE(1179)] = 43527, + [SMALL_STATE(1180)] = 43571, + [SMALL_STATE(1181)] = 43615, + [SMALL_STATE(1182)] = 43659, + [SMALL_STATE(1183)] = 43703, + [SMALL_STATE(1184)] = 43747, + [SMALL_STATE(1185)] = 43791, + [SMALL_STATE(1186)] = 43835, + [SMALL_STATE(1187)] = 43879, + [SMALL_STATE(1188)] = 43952, + [SMALL_STATE(1189)] = 44025, + [SMALL_STATE(1190)] = 44093, + [SMALL_STATE(1191)] = 44161, + [SMALL_STATE(1192)] = 44205, + [SMALL_STATE(1193)] = 44273, + [SMALL_STATE(1194)] = 44341, + [SMALL_STATE(1195)] = 44409, + [SMALL_STATE(1196)] = 44477, + [SMALL_STATE(1197)] = 44545, + [SMALL_STATE(1198)] = 44613, + [SMALL_STATE(1199)] = 44683, + [SMALL_STATE(1200)] = 44753, + [SMALL_STATE(1201)] = 44821, + [SMALL_STATE(1202)] = 44889, + [SMALL_STATE(1203)] = 44957, + [SMALL_STATE(1204)] = 45025, + [SMALL_STATE(1205)] = 45102, + [SMALL_STATE(1206)] = 45157, + [SMALL_STATE(1207)] = 45230, + [SMALL_STATE(1208)] = 45301, + [SMALL_STATE(1209)] = 45364, + [SMALL_STATE(1210)] = 45423, + [SMALL_STATE(1211)] = 45488, + [SMALL_STATE(1212)] = 45565, + [SMALL_STATE(1213)] = 45642, + [SMALL_STATE(1214)] = 45719, + [SMALL_STATE(1215)] = 45794, + [SMALL_STATE(1216)] = 45861, + [SMALL_STATE(1217)] = 45918, + [SMALL_STATE(1218)] = 45987, + [SMALL_STATE(1219)] = 46051, + [SMALL_STATE(1220)] = 46091, + [SMALL_STATE(1221)] = 46155, + [SMALL_STATE(1222)] = 46219, + [SMALL_STATE(1223)] = 46283, + [SMALL_STATE(1224)] = 46347, + [SMALL_STATE(1225)] = 46411, + [SMALL_STATE(1226)] = 46451, + [SMALL_STATE(1227)] = 46491, + [SMALL_STATE(1228)] = 46555, + [SMALL_STATE(1229)] = 46619, + [SMALL_STATE(1230)] = 46659, + [SMALL_STATE(1231)] = 46723, + [SMALL_STATE(1232)] = 46787, + [SMALL_STATE(1233)] = 46848, + [SMALL_STATE(1234)] = 46901, + [SMALL_STATE(1235)] = 46972, + [SMALL_STATE(1236)] = 47041, + [SMALL_STATE(1237)] = 47108, + [SMALL_STATE(1238)] = 47173, + [SMALL_STATE(1239)] = 47234, + [SMALL_STATE(1240)] = 47295, + [SMALL_STATE(1241)] = 47370, + [SMALL_STATE(1242)] = 47445, + [SMALL_STATE(1243)] = 47520, + [SMALL_STATE(1244)] = 47593, + [SMALL_STATE(1245)] = 47654, + [SMALL_STATE(1246)] = 47715, + [SMALL_STATE(1247)] = 47770, + [SMALL_STATE(1248)] = 47827, + [SMALL_STATE(1249)] = 47888, + [SMALL_STATE(1250)] = 47949, + [SMALL_STATE(1251)] = 48012, + [SMALL_STATE(1252)] = 48058, + [SMALL_STATE(1253)] = 48132, + [SMALL_STATE(1254)] = 48180, + [SMALL_STATE(1255)] = 48226, + [SMALL_STATE(1256)] = 48301, + [SMALL_STATE(1257)] = 48376, + [SMALL_STATE(1258)] = 48427, + [SMALL_STATE(1259)] = 48494, + [SMALL_STATE(1260)] = 48559, + [SMALL_STATE(1261)] = 48624, + [SMALL_STATE(1262)] = 48695, + [SMALL_STATE(1263)] = 48758, + [SMALL_STATE(1264)] = 48819, + [SMALL_STATE(1265)] = 48878, + [SMALL_STATE(1266)] = 48933, + [SMALL_STATE(1267)] = 49002, + [SMALL_STATE(1268)] = 49077, + [SMALL_STATE(1269)] = 49130, + [SMALL_STATE(1270)] = 49205, + [SMALL_STATE(1271)] = 49250, + [SMALL_STATE(1272)] = 49325, + [SMALL_STATE(1273)] = 49396, + [SMALL_STATE(1274)] = 49467, + [SMALL_STATE(1275)] = 49537, + [SMALL_STATE(1276)] = 49609, + [SMALL_STATE(1277)] = 49679, + [SMALL_STATE(1278)] = 49749, + [SMALL_STATE(1279)] = 49821, + [SMALL_STATE(1280)] = 49891, + [SMALL_STATE(1281)] = 49963, + [SMALL_STATE(1282)] = 50015, + [SMALL_STATE(1283)] = 50083, + [SMALL_STATE(1284)] = 50149, + [SMALL_STATE(1285)] = 50215, + [SMALL_STATE(1286)] = 50279, + [SMALL_STATE(1287)] = 50341, + [SMALL_STATE(1288)] = 50401, + [SMALL_STATE(1289)] = 50457, + [SMALL_STATE(1290)] = 50511, + [SMALL_STATE(1291)] = 50583, + [SMALL_STATE(1292)] = 50653, + [SMALL_STATE(1293)] = 50725, + [SMALL_STATE(1294)] = 50797, + [SMALL_STATE(1295)] = 50869, + [SMALL_STATE(1296)] = 50941, + [SMALL_STATE(1297)] = 51013, + [SMALL_STATE(1298)] = 51085, + [SMALL_STATE(1299)] = 51157, + [SMALL_STATE(1300)] = 51229, + [SMALL_STATE(1301)] = 51301, + [SMALL_STATE(1302)] = 51373, + [SMALL_STATE(1303)] = 51445, + [SMALL_STATE(1304)] = 51515, + [SMALL_STATE(1305)] = 51587, + [SMALL_STATE(1306)] = 51657, + [SMALL_STATE(1307)] = 51727, + [SMALL_STATE(1308)] = 51797, + [SMALL_STATE(1309)] = 51847, + [SMALL_STATE(1310)] = 51915, + [SMALL_STATE(1311)] = 51987, + [SMALL_STATE(1312)] = 52059, + [SMALL_STATE(1313)] = 52131, + [SMALL_STATE(1314)] = 52203, + [SMALL_STATE(1315)] = 52275, + [SMALL_STATE(1316)] = 52315, + [SMALL_STATE(1317)] = 52365, + [SMALL_STATE(1318)] = 52437, + [SMALL_STATE(1319)] = 52503, + [SMALL_STATE(1320)] = 52567, + [SMALL_STATE(1321)] = 52639, + [SMALL_STATE(1322)] = 52709, + [SMALL_STATE(1323)] = 52773, + [SMALL_STATE(1324)] = 52845, + [SMALL_STATE(1325)] = 52907, + [SMALL_STATE(1326)] = 52967, + [SMALL_STATE(1327)] = 53017, + [SMALL_STATE(1328)] = 53089, + [SMALL_STATE(1329)] = 53147, + [SMALL_STATE(1330)] = 53201, + [SMALL_STATE(1331)] = 53271, + [SMALL_STATE(1332)] = 53323, + [SMALL_STATE(1333)] = 53363, + [SMALL_STATE(1334)] = 53435, + [SMALL_STATE(1335)] = 53473, + [SMALL_STATE(1336)] = 53511, + [SMALL_STATE(1337)] = 53583, + [SMALL_STATE(1338)] = 53653, + [SMALL_STATE(1339)] = 53725, + [SMALL_STATE(1340)] = 53797, + [SMALL_STATE(1341)] = 53869, + [SMALL_STATE(1342)] = 53941, + [SMALL_STATE(1343)] = 53981, + [SMALL_STATE(1344)] = 54055, + [SMALL_STATE(1345)] = 54127, + [SMALL_STATE(1346)] = 54199, + [SMALL_STATE(1347)] = 54271, + [SMALL_STATE(1348)] = 54343, + [SMALL_STATE(1349)] = 54404, + [SMALL_STATE(1350)] = 54473, + [SMALL_STATE(1351)] = 54542, + [SMALL_STATE(1352)] = 54597, + [SMALL_STATE(1353)] = 54666, + [SMALL_STATE(1354)] = 54735, + [SMALL_STATE(1355)] = 54804, + [SMALL_STATE(1356)] = 54871, + [SMALL_STATE(1357)] = 54940, + [SMALL_STATE(1358)] = 55009, + [SMALL_STATE(1359)] = 55078, + [SMALL_STATE(1360)] = 55147, + [SMALL_STATE(1361)] = 55216, + [SMALL_STATE(1362)] = 55285, + [SMALL_STATE(1363)] = 55354, + [SMALL_STATE(1364)] = 55423, + [SMALL_STATE(1365)] = 55492, + [SMALL_STATE(1366)] = 55561, + [SMALL_STATE(1367)] = 55630, + [SMALL_STATE(1368)] = 55685, + [SMALL_STATE(1369)] = 55754, + [SMALL_STATE(1370)] = 55809, + [SMALL_STATE(1371)] = 55878, + [SMALL_STATE(1372)] = 55947, + [SMALL_STATE(1373)] = 56016, + [SMALL_STATE(1374)] = 56071, + [SMALL_STATE(1375)] = 56120, + [SMALL_STATE(1376)] = 56185, + [SMALL_STATE(1377)] = 56248, + [SMALL_STATE(1378)] = 56311, + [SMALL_STATE(1379)] = 56370, + [SMALL_STATE(1380)] = 56427, + [SMALL_STATE(1381)] = 56480, + [SMALL_STATE(1382)] = 56531, + [SMALL_STATE(1383)] = 56600, + [SMALL_STATE(1384)] = 56669, + [SMALL_STATE(1385)] = 56738, + [SMALL_STATE(1386)] = 56807, + [SMALL_STATE(1387)] = 56876, + [SMALL_STATE(1388)] = 56945, + [SMALL_STATE(1389)] = 57014, + [SMALL_STATE(1390)] = 57083, + [SMALL_STATE(1391)] = 57152, + [SMALL_STATE(1392)] = 57221, + [SMALL_STATE(1393)] = 57276, + [SMALL_STATE(1394)] = 57331, + [SMALL_STATE(1395)] = 57397, + [SMALL_STATE(1396)] = 57449, + [SMALL_STATE(1397)] = 57501, + [SMALL_STATE(1398)] = 57553, + [SMALL_STATE(1399)] = 57605, + [SMALL_STATE(1400)] = 57657, + [SMALL_STATE(1401)] = 57709, + [SMALL_STATE(1402)] = 57761, + [SMALL_STATE(1403)] = 57813, + [SMALL_STATE(1404)] = 57865, + [SMALL_STATE(1405)] = 57904, + [SMALL_STATE(1406)] = 57953, + [SMALL_STATE(1407)] = 58002, + [SMALL_STATE(1408)] = 58058, + [SMALL_STATE(1409)] = 58096, + [SMALL_STATE(1410)] = 58136, + [SMALL_STATE(1411)] = 58176, + [SMALL_STATE(1412)] = 58216, + [SMALL_STATE(1413)] = 58256, + [SMALL_STATE(1414)] = 58296, + [SMALL_STATE(1415)] = 58336, + [SMALL_STATE(1416)] = 58385, + [SMALL_STATE(1417)] = 58439, + [SMALL_STATE(1418)] = 58473, + [SMALL_STATE(1419)] = 58505, + [SMALL_STATE(1420)] = 58539, + [SMALL_STATE(1421)] = 58573, + [SMALL_STATE(1422)] = 58607, + [SMALL_STATE(1423)] = 58641, + [SMALL_STATE(1424)] = 58675, + [SMALL_STATE(1425)] = 58729, + [SMALL_STATE(1426)] = 58765, + [SMALL_STATE(1427)] = 58799, + [SMALL_STATE(1428)] = 58833, + [SMALL_STATE(1429)] = 58887, + [SMALL_STATE(1430)] = 58921, + [SMALL_STATE(1431)] = 58955, + [SMALL_STATE(1432)] = 58989, + [SMALL_STATE(1433)] = 59023, + [SMALL_STATE(1434)] = 59057, + [SMALL_STATE(1435)] = 59111, + [SMALL_STATE(1436)] = 59143, + [SMALL_STATE(1437)] = 59177, + [SMALL_STATE(1438)] = 59220, + [SMALL_STATE(1439)] = 59271, + [SMALL_STATE(1440)] = 59304, + [SMALL_STATE(1441)] = 59355, + [SMALL_STATE(1442)] = 59410, + [SMALL_STATE(1443)] = 59461, + [SMALL_STATE(1444)] = 59512, + [SMALL_STATE(1445)] = 59563, + [SMALL_STATE(1446)] = 59618, + [SMALL_STATE(1447)] = 59649, + [SMALL_STATE(1448)] = 59700, + [SMALL_STATE(1449)] = 59743, + [SMALL_STATE(1450)] = 59794, + [SMALL_STATE(1451)] = 59849, + [SMALL_STATE(1452)] = 59900, + [SMALL_STATE(1453)] = 59951, + [SMALL_STATE(1454)] = 59992, + [SMALL_STATE(1455)] = 60035, + [SMALL_STATE(1456)] = 60086, + [SMALL_STATE(1457)] = 60126, + [SMALL_STATE(1458)] = 60166, + [SMALL_STATE(1459)] = 60206, + [SMALL_STATE(1460)] = 60246, + [SMALL_STATE(1461)] = 60286, + [SMALL_STATE(1462)] = 60318, + [SMALL_STATE(1463)] = 60358, + [SMALL_STATE(1464)] = 60398, + [SMALL_STATE(1465)] = 60438, + [SMALL_STATE(1466)] = 60478, + [SMALL_STATE(1467)] = 60518, + [SMALL_STATE(1468)] = 60558, + [SMALL_STATE(1469)] = 60598, + [SMALL_STATE(1470)] = 60638, + [SMALL_STATE(1471)] = 60678, + [SMALL_STATE(1472)] = 60718, + [SMALL_STATE(1473)] = 60746, + [SMALL_STATE(1474)] = 60786, + [SMALL_STATE(1475)] = 60826, + [SMALL_STATE(1476)] = 60854, + [SMALL_STATE(1477)] = 60882, + [SMALL_STATE(1478)] = 60922, + [SMALL_STATE(1479)] = 60962, + [SMALL_STATE(1480)] = 61002, + [SMALL_STATE(1481)] = 61030, + [SMALL_STATE(1482)] = 61070, + [SMALL_STATE(1483)] = 61110, + [SMALL_STATE(1484)] = 61150, + [SMALL_STATE(1485)] = 61190, + [SMALL_STATE(1486)] = 61230, + [SMALL_STATE(1487)] = 61270, + [SMALL_STATE(1488)] = 61310, + [SMALL_STATE(1489)] = 61350, + [SMALL_STATE(1490)] = 61390, + [SMALL_STATE(1491)] = 61430, + [SMALL_STATE(1492)] = 61470, + [SMALL_STATE(1493)] = 61520, + [SMALL_STATE(1494)] = 61548, + [SMALL_STATE(1495)] = 61580, + [SMALL_STATE(1496)] = 61608, + [SMALL_STATE(1497)] = 61656, + [SMALL_STATE(1498)] = 61702, + [SMALL_STATE(1499)] = 61748, + [SMALL_STATE(1500)] = 61792, + [SMALL_STATE(1501)] = 61834, + [SMALL_STATE(1502)] = 61874, + [SMALL_STATE(1503)] = 61910, + [SMALL_STATE(1504)] = 61944, + [SMALL_STATE(1505)] = 61984, + [SMALL_STATE(1506)] = 62024, + [SMALL_STATE(1507)] = 62064, + [SMALL_STATE(1508)] = 62104, + [SMALL_STATE(1509)] = 62144, + [SMALL_STATE(1510)] = 62184, + [SMALL_STATE(1511)] = 62224, + [SMALL_STATE(1512)] = 62264, + [SMALL_STATE(1513)] = 62291, + [SMALL_STATE(1514)] = 62334, + [SMALL_STATE(1515)] = 62379, + [SMALL_STATE(1516)] = 62424, + [SMALL_STATE(1517)] = 62465, + [SMALL_STATE(1518)] = 62510, + [SMALL_STATE(1519)] = 62555, + [SMALL_STATE(1520)] = 62594, + [SMALL_STATE(1521)] = 62621, + [SMALL_STATE(1522)] = 62650, + [SMALL_STATE(1523)] = 62693, + [SMALL_STATE(1524)] = 62720, + [SMALL_STATE(1525)] = 62765, + [SMALL_STATE(1526)] = 62810, + [SMALL_STATE(1527)] = 62855, + [SMALL_STATE(1528)] = 62882, + [SMALL_STATE(1529)] = 62927, + [SMALL_STATE(1530)] = 62958, + [SMALL_STATE(1531)] = 63001, + [SMALL_STATE(1532)] = 63034, + [SMALL_STATE(1533)] = 63079, + [SMALL_STATE(1534)] = 63128, + [SMALL_STATE(1535)] = 63177, + [SMALL_STATE(1536)] = 63222, + [SMALL_STATE(1537)] = 63259, + [SMALL_STATE(1538)] = 63302, + [SMALL_STATE(1539)] = 63337, + [SMALL_STATE(1540)] = 63364, + [SMALL_STATE(1541)] = 63407, + [SMALL_STATE(1542)] = 63452, + [SMALL_STATE(1543)] = 63497, + [SMALL_STATE(1544)] = 63526, + [SMALL_STATE(1545)] = 63571, + [SMALL_STATE(1546)] = 63598, + [SMALL_STATE(1547)] = 63625, + [SMALL_STATE(1548)] = 63670, + [SMALL_STATE(1549)] = 63697, + [SMALL_STATE(1550)] = 63724, + [SMALL_STATE(1551)] = 63751, + [SMALL_STATE(1552)] = 63796, + [SMALL_STATE(1553)] = 63836, + [SMALL_STATE(1554)] = 63876, + [SMALL_STATE(1555)] = 63920, + [SMALL_STATE(1556)] = 63956, + [SMALL_STATE(1557)] = 63996, + [SMALL_STATE(1558)] = 64036, + [SMALL_STATE(1559)] = 64078, + [SMALL_STATE(1560)] = 64118, + [SMALL_STATE(1561)] = 64158, + [SMALL_STATE(1562)] = 64199, + [SMALL_STATE(1563)] = 64230, + [SMALL_STATE(1564)] = 64261, + [SMALL_STATE(1565)] = 64300, + [SMALL_STATE(1566)] = 64341, + [SMALL_STATE(1567)] = 64372, + [SMALL_STATE(1568)] = 64413, + [SMALL_STATE(1569)] = 64454, + [SMALL_STATE(1570)] = 64495, + [SMALL_STATE(1571)] = 64536, + [SMALL_STATE(1572)] = 64577, + [SMALL_STATE(1573)] = 64618, + [SMALL_STATE(1574)] = 64649, + [SMALL_STATE(1575)] = 64677, + [SMALL_STATE(1576)] = 64719, + [SMALL_STATE(1577)] = 64757, + [SMALL_STATE(1578)] = 64795, + [SMALL_STATE(1579)] = 64837, + [SMALL_STATE(1580)] = 64879, + [SMALL_STATE(1581)] = 64906, + [SMALL_STATE(1582)] = 64945, + [SMALL_STATE(1583)] = 64984, + [SMALL_STATE(1584)] = 65017, + [SMALL_STATE(1585)] = 65040, + [SMALL_STATE(1586)] = 65067, + [SMALL_STATE(1587)] = 65106, + [SMALL_STATE(1588)] = 65129, + [SMALL_STATE(1589)] = 65168, + [SMALL_STATE(1590)] = 65191, + [SMALL_STATE(1591)] = 65223, + [SMALL_STATE(1592)] = 65255, + [SMALL_STATE(1593)] = 65287, + [SMALL_STATE(1594)] = 65319, + [SMALL_STATE(1595)] = 65356, + [SMALL_STATE(1596)] = 65393, + [SMALL_STATE(1597)] = 65430, + [SMALL_STATE(1598)] = 65463, + [SMALL_STATE(1599)] = 65500, + [SMALL_STATE(1600)] = 65521, + [SMALL_STATE(1601)] = 65558, + [SMALL_STATE(1602)] = 65595, + [SMALL_STATE(1603)] = 65616, + [SMALL_STATE(1604)] = 65653, + [SMALL_STATE(1605)] = 65692, + [SMALL_STATE(1606)] = 65729, + [SMALL_STATE(1607)] = 65750, + [SMALL_STATE(1608)] = 65771, + [SMALL_STATE(1609)] = 65808, + [SMALL_STATE(1610)] = 65829, + [SMALL_STATE(1611)] = 65866, + [SMALL_STATE(1612)] = 65887, + [SMALL_STATE(1613)] = 65914, + [SMALL_STATE(1614)] = 65947, + [SMALL_STATE(1615)] = 65968, + [SMALL_STATE(1616)] = 65998, + [SMALL_STATE(1617)] = 66032, + [SMALL_STATE(1618)] = 66062, + [SMALL_STATE(1619)] = 66092, + [SMALL_STATE(1620)] = 66122, + [SMALL_STATE(1621)] = 66156, + [SMALL_STATE(1622)] = 66187, + [SMALL_STATE(1623)] = 66216, + [SMALL_STATE(1624)] = 66245, + [SMALL_STATE(1625)] = 66276, + [SMALL_STATE(1626)] = 66305, + [SMALL_STATE(1627)] = 66336, + [SMALL_STATE(1628)] = 66365, + [SMALL_STATE(1629)] = 66398, + [SMALL_STATE(1630)] = 66427, + [SMALL_STATE(1631)] = 66456, + [SMALL_STATE(1632)] = 66485, + [SMALL_STATE(1633)] = 66514, + [SMALL_STATE(1634)] = 66537, + [SMALL_STATE(1635)] = 66568, + [SMALL_STATE(1636)] = 66597, + [SMALL_STATE(1637)] = 66626, + [SMALL_STATE(1638)] = 66655, + [SMALL_STATE(1639)] = 66686, + [SMALL_STATE(1640)] = 66717, + [SMALL_STATE(1641)] = 66746, + [SMALL_STATE(1642)] = 66769, + [SMALL_STATE(1643)] = 66800, + [SMALL_STATE(1644)] = 66823, + [SMALL_STATE(1645)] = 66852, + [SMALL_STATE(1646)] = 66881, + [SMALL_STATE(1647)] = 66910, + [SMALL_STATE(1648)] = 66939, + [SMALL_STATE(1649)] = 66964, + [SMALL_STATE(1650)] = 66993, + [SMALL_STATE(1651)] = 67018, + [SMALL_STATE(1652)] = 67049, + [SMALL_STATE(1653)] = 67078, + [SMALL_STATE(1654)] = 67110, + [SMALL_STATE(1655)] = 67134, + [SMALL_STATE(1656)] = 67162, + [SMALL_STATE(1657)] = 67190, + [SMALL_STATE(1658)] = 67218, + [SMALL_STATE(1659)] = 67242, + [SMALL_STATE(1660)] = 67270, + [SMALL_STATE(1661)] = 67302, + [SMALL_STATE(1662)] = 67326, + [SMALL_STATE(1663)] = 67348, + [SMALL_STATE(1664)] = 67370, + [SMALL_STATE(1665)] = 67402, + [SMALL_STATE(1666)] = 67430, + [SMALL_STATE(1667)] = 67462, + [SMALL_STATE(1668)] = 67479, + [SMALL_STATE(1669)] = 67502, + [SMALL_STATE(1670)] = 67519, + [SMALL_STATE(1671)] = 67540, + [SMALL_STATE(1672)] = 67563, + [SMALL_STATE(1673)] = 67592, + [SMALL_STATE(1674)] = 67621, + [SMALL_STATE(1675)] = 67646, + [SMALL_STATE(1676)] = 67675, + [SMALL_STATE(1677)] = 67704, + [SMALL_STATE(1678)] = 67733, + [SMALL_STATE(1679)] = 67762, + [SMALL_STATE(1680)] = 67779, + [SMALL_STATE(1681)] = 67808, + [SMALL_STATE(1682)] = 67825, + [SMALL_STATE(1683)] = 67846, + [SMALL_STATE(1684)] = 67863, + [SMALL_STATE(1685)] = 67880, + [SMALL_STATE(1686)] = 67897, + [SMALL_STATE(1687)] = 67918, + [SMALL_STATE(1688)] = 67947, + [SMALL_STATE(1689)] = 67974, + [SMALL_STATE(1690)] = 67991, + [SMALL_STATE(1691)] = 68012, + [SMALL_STATE(1692)] = 68033, + [SMALL_STATE(1693)] = 68050, + [SMALL_STATE(1694)] = 68071, + [SMALL_STATE(1695)] = 68092, + [SMALL_STATE(1696)] = 68108, + [SMALL_STATE(1697)] = 68130, + [SMALL_STATE(1698)] = 68146, + [SMALL_STATE(1699)] = 68172, + [SMALL_STATE(1700)] = 68194, + [SMALL_STATE(1701)] = 68220, + [SMALL_STATE(1702)] = 68240, + [SMALL_STATE(1703)] = 68266, + [SMALL_STATE(1704)] = 68282, + [SMALL_STATE(1705)] = 68298, + [SMALL_STATE(1706)] = 68324, + [SMALL_STATE(1707)] = 68346, + [SMALL_STATE(1708)] = 68372, + [SMALL_STATE(1709)] = 68392, + [SMALL_STATE(1710)] = 68408, + [SMALL_STATE(1711)] = 68424, + [SMALL_STATE(1712)] = 68440, + [SMALL_STATE(1713)] = 68462, + [SMALL_STATE(1714)] = 68488, + [SMALL_STATE(1715)] = 68508, + [SMALL_STATE(1716)] = 68534, + [SMALL_STATE(1717)] = 68560, + [SMALL_STATE(1718)] = 68586, + [SMALL_STATE(1719)] = 68604, + [SMALL_STATE(1720)] = 68630, + [SMALL_STATE(1721)] = 68646, + [SMALL_STATE(1722)] = 68662, + [SMALL_STATE(1723)] = 68678, + [SMALL_STATE(1724)] = 68704, + [SMALL_STATE(1725)] = 68730, + [SMALL_STATE(1726)] = 68753, + [SMALL_STATE(1727)] = 68776, + [SMALL_STATE(1728)] = 68799, + [SMALL_STATE(1729)] = 68822, + [SMALL_STATE(1730)] = 68837, + [SMALL_STATE(1731)] = 68860, + [SMALL_STATE(1732)] = 68883, + [SMALL_STATE(1733)] = 68906, + [SMALL_STATE(1734)] = 68923, + [SMALL_STATE(1735)] = 68946, + [SMALL_STATE(1736)] = 68961, + [SMALL_STATE(1737)] = 68984, + [SMALL_STATE(1738)] = 69007, + [SMALL_STATE(1739)] = 69030, + [SMALL_STATE(1740)] = 69045, + [SMALL_STATE(1741)] = 69060, + [SMALL_STATE(1742)] = 69083, + [SMALL_STATE(1743)] = 69098, + [SMALL_STATE(1744)] = 69117, + [SMALL_STATE(1745)] = 69132, + [SMALL_STATE(1746)] = 69147, + [SMALL_STATE(1747)] = 69164, + [SMALL_STATE(1748)] = 69179, + [SMALL_STATE(1749)] = 69198, + [SMALL_STATE(1750)] = 69221, + [SMALL_STATE(1751)] = 69236, + [SMALL_STATE(1752)] = 69259, + [SMALL_STATE(1753)] = 69274, + [SMALL_STATE(1754)] = 69289, + [SMALL_STATE(1755)] = 69304, + [SMALL_STATE(1756)] = 69327, + [SMALL_STATE(1757)] = 69344, + [SMALL_STATE(1758)] = 69367, + [SMALL_STATE(1759)] = 69390, + [SMALL_STATE(1760)] = 69405, + [SMALL_STATE(1761)] = 69423, + [SMALL_STATE(1762)] = 69437, + [SMALL_STATE(1763)] = 69455, + [SMALL_STATE(1764)] = 69469, + [SMALL_STATE(1765)] = 69483, + [SMALL_STATE(1766)] = 69497, + [SMALL_STATE(1767)] = 69511, + [SMALL_STATE(1768)] = 69529, + [SMALL_STATE(1769)] = 69547, + [SMALL_STATE(1770)] = 69567, + [SMALL_STATE(1771)] = 69585, + [SMALL_STATE(1772)] = 69599, + [SMALL_STATE(1773)] = 69617, + [SMALL_STATE(1774)] = 69631, + [SMALL_STATE(1775)] = 69649, + [SMALL_STATE(1776)] = 69667, + [SMALL_STATE(1777)] = 69681, + [SMALL_STATE(1778)] = 69695, + [SMALL_STATE(1779)] = 69709, + [SMALL_STATE(1780)] = 69723, + [SMALL_STATE(1781)] = 69737, + [SMALL_STATE(1782)] = 69751, + [SMALL_STATE(1783)] = 69769, + [SMALL_STATE(1784)] = 69783, + [SMALL_STATE(1785)] = 69797, + [SMALL_STATE(1786)] = 69808, + [SMALL_STATE(1787)] = 69825, + [SMALL_STATE(1788)] = 69842, + [SMALL_STATE(1789)] = 69859, + [SMALL_STATE(1790)] = 69876, + [SMALL_STATE(1791)] = 69893, + [SMALL_STATE(1792)] = 69910, + [SMALL_STATE(1793)] = 69927, + [SMALL_STATE(1794)] = 69944, + [SMALL_STATE(1795)] = 69961, + [SMALL_STATE(1796)] = 69978, + [SMALL_STATE(1797)] = 69997, + [SMALL_STATE(1798)] = 70014, + [SMALL_STATE(1799)] = 70031, + [SMALL_STATE(1800)] = 70048, + [SMALL_STATE(1801)] = 70065, + [SMALL_STATE(1802)] = 70082, + [SMALL_STATE(1803)] = 70099, + [SMALL_STATE(1804)] = 70116, + [SMALL_STATE(1805)] = 70133, + [SMALL_STATE(1806)] = 70150, + [SMALL_STATE(1807)] = 70167, + [SMALL_STATE(1808)] = 70184, + [SMALL_STATE(1809)] = 70201, + [SMALL_STATE(1810)] = 70218, + [SMALL_STATE(1811)] = 70237, + [SMALL_STATE(1812)] = 70250, + [SMALL_STATE(1813)] = 70266, + [SMALL_STATE(1814)] = 70280, + [SMALL_STATE(1815)] = 70294, + [SMALL_STATE(1816)] = 70310, + [SMALL_STATE(1817)] = 70326, + [SMALL_STATE(1818)] = 70338, + [SMALL_STATE(1819)] = 70354, + [SMALL_STATE(1820)] = 70370, + [SMALL_STATE(1821)] = 70384, + [SMALL_STATE(1822)] = 70398, + [SMALL_STATE(1823)] = 70414, + [SMALL_STATE(1824)] = 70428, + [SMALL_STATE(1825)] = 70442, + [SMALL_STATE(1826)] = 70458, + [SMALL_STATE(1827)] = 70472, + [SMALL_STATE(1828)] = 70488, + [SMALL_STATE(1829)] = 70502, + [SMALL_STATE(1830)] = 70518, + [SMALL_STATE(1831)] = 70534, + [SMALL_STATE(1832)] = 70548, + [SMALL_STATE(1833)] = 70562, + [SMALL_STATE(1834)] = 70578, + [SMALL_STATE(1835)] = 70592, + [SMALL_STATE(1836)] = 70606, + [SMALL_STATE(1837)] = 70620, + [SMALL_STATE(1838)] = 70634, + [SMALL_STATE(1839)] = 70650, + [SMALL_STATE(1840)] = 70666, + [SMALL_STATE(1841)] = 70680, + [SMALL_STATE(1842)] = 70696, + [SMALL_STATE(1843)] = 70710, + [SMALL_STATE(1844)] = 70724, + [SMALL_STATE(1845)] = 70740, + [SMALL_STATE(1846)] = 70756, + [SMALL_STATE(1847)] = 70770, + [SMALL_STATE(1848)] = 70786, + [SMALL_STATE(1849)] = 70802, + [SMALL_STATE(1850)] = 70818, + [SMALL_STATE(1851)] = 70834, + [SMALL_STATE(1852)] = 70848, + [SMALL_STATE(1853)] = 70862, + [SMALL_STATE(1854)] = 70878, + [SMALL_STATE(1855)] = 70892, + [SMALL_STATE(1856)] = 70908, + [SMALL_STATE(1857)] = 70921, + [SMALL_STATE(1858)] = 70934, + [SMALL_STATE(1859)] = 70947, + [SMALL_STATE(1860)] = 70960, + [SMALL_STATE(1861)] = 70973, + [SMALL_STATE(1862)] = 70986, + [SMALL_STATE(1863)] = 70995, + [SMALL_STATE(1864)] = 71006, + [SMALL_STATE(1865)] = 71019, + [SMALL_STATE(1866)] = 71032, + [SMALL_STATE(1867)] = 71041, + [SMALL_STATE(1868)] = 71054, + [SMALL_STATE(1869)] = 71067, + [SMALL_STATE(1870)] = 71080, + [SMALL_STATE(1871)] = 71093, + [SMALL_STATE(1872)] = 71106, + [SMALL_STATE(1873)] = 71119, + [SMALL_STATE(1874)] = 71132, + [SMALL_STATE(1875)] = 71141, + [SMALL_STATE(1876)] = 71154, + [SMALL_STATE(1877)] = 71167, + [SMALL_STATE(1878)] = 71180, + [SMALL_STATE(1879)] = 71193, + [SMALL_STATE(1880)] = 71206, + [SMALL_STATE(1881)] = 71219, + [SMALL_STATE(1882)] = 71232, + [SMALL_STATE(1883)] = 71245, + [SMALL_STATE(1884)] = 71258, + [SMALL_STATE(1885)] = 71271, + [SMALL_STATE(1886)] = 71284, + [SMALL_STATE(1887)] = 71297, + [SMALL_STATE(1888)] = 71310, + [SMALL_STATE(1889)] = 71323, + [SMALL_STATE(1890)] = 71336, + [SMALL_STATE(1891)] = 71349, + [SMALL_STATE(1892)] = 71362, + [SMALL_STATE(1893)] = 71375, + [SMALL_STATE(1894)] = 71388, + [SMALL_STATE(1895)] = 71401, + [SMALL_STATE(1896)] = 71414, + [SMALL_STATE(1897)] = 71427, + [SMALL_STATE(1898)] = 71440, + [SMALL_STATE(1899)] = 71453, + [SMALL_STATE(1900)] = 71466, + [SMALL_STATE(1901)] = 71479, + [SMALL_STATE(1902)] = 71492, + [SMALL_STATE(1903)] = 71505, + [SMALL_STATE(1904)] = 71518, + [SMALL_STATE(1905)] = 71531, + [SMALL_STATE(1906)] = 71540, + [SMALL_STATE(1907)] = 71553, + [SMALL_STATE(1908)] = 71566, + [SMALL_STATE(1909)] = 71577, + [SMALL_STATE(1910)] = 71590, + [SMALL_STATE(1911)] = 71601, + [SMALL_STATE(1912)] = 71614, + [SMALL_STATE(1913)] = 71627, + [SMALL_STATE(1914)] = 71640, + [SMALL_STATE(1915)] = 71653, + [SMALL_STATE(1916)] = 71666, + [SMALL_STATE(1917)] = 71679, + [SMALL_STATE(1918)] = 71692, + [SMALL_STATE(1919)] = 71705, + [SMALL_STATE(1920)] = 71718, + [SMALL_STATE(1921)] = 71727, + [SMALL_STATE(1922)] = 71740, + [SMALL_STATE(1923)] = 71753, + [SMALL_STATE(1924)] = 71766, + [SMALL_STATE(1925)] = 71779, + [SMALL_STATE(1926)] = 71792, + [SMALL_STATE(1927)] = 71805, + [SMALL_STATE(1928)] = 71818, + [SMALL_STATE(1929)] = 71831, + [SMALL_STATE(1930)] = 71844, + [SMALL_STATE(1931)] = 71857, + [SMALL_STATE(1932)] = 71866, + [SMALL_STATE(1933)] = 71879, + [SMALL_STATE(1934)] = 71892, + [SMALL_STATE(1935)] = 71905, + [SMALL_STATE(1936)] = 71918, + [SMALL_STATE(1937)] = 71929, + [SMALL_STATE(1938)] = 71938, + [SMALL_STATE(1939)] = 71947, + [SMALL_STATE(1940)] = 71958, + [SMALL_STATE(1941)] = 71971, + [SMALL_STATE(1942)] = 71984, + [SMALL_STATE(1943)] = 71997, + [SMALL_STATE(1944)] = 72010, + [SMALL_STATE(1945)] = 72019, + [SMALL_STATE(1946)] = 72032, + [SMALL_STATE(1947)] = 72045, + [SMALL_STATE(1948)] = 72054, + [SMALL_STATE(1949)] = 72063, + [SMALL_STATE(1950)] = 72076, + [SMALL_STATE(1951)] = 72089, + [SMALL_STATE(1952)] = 72102, + [SMALL_STATE(1953)] = 72115, + [SMALL_STATE(1954)] = 72128, + [SMALL_STATE(1955)] = 72141, + [SMALL_STATE(1956)] = 72154, + [SMALL_STATE(1957)] = 72167, + [SMALL_STATE(1958)] = 72180, + [SMALL_STATE(1959)] = 72193, + [SMALL_STATE(1960)] = 72206, + [SMALL_STATE(1961)] = 72219, + [SMALL_STATE(1962)] = 72232, + [SMALL_STATE(1963)] = 72245, + [SMALL_STATE(1964)] = 72258, + [SMALL_STATE(1965)] = 72271, + [SMALL_STATE(1966)] = 72284, + [SMALL_STATE(1967)] = 72292, + [SMALL_STATE(1968)] = 72300, + [SMALL_STATE(1969)] = 72310, + [SMALL_STATE(1970)] = 72320, + [SMALL_STATE(1971)] = 72328, + [SMALL_STATE(1972)] = 72338, + [SMALL_STATE(1973)] = 72348, + [SMALL_STATE(1974)] = 72358, + [SMALL_STATE(1975)] = 72366, + [SMALL_STATE(1976)] = 72376, + [SMALL_STATE(1977)] = 72384, + [SMALL_STATE(1978)] = 72392, + [SMALL_STATE(1979)] = 72402, + [SMALL_STATE(1980)] = 72412, + [SMALL_STATE(1981)] = 72422, + [SMALL_STATE(1982)] = 72430, + [SMALL_STATE(1983)] = 72440, + [SMALL_STATE(1984)] = 72448, + [SMALL_STATE(1985)] = 72456, + [SMALL_STATE(1986)] = 72464, + [SMALL_STATE(1987)] = 72474, + [SMALL_STATE(1988)] = 72484, + [SMALL_STATE(1989)] = 72494, + [SMALL_STATE(1990)] = 72504, + [SMALL_STATE(1991)] = 72514, + [SMALL_STATE(1992)] = 72524, + [SMALL_STATE(1993)] = 72534, + [SMALL_STATE(1994)] = 72544, + [SMALL_STATE(1995)] = 72552, + [SMALL_STATE(1996)] = 72562, + [SMALL_STATE(1997)] = 72572, + [SMALL_STATE(1998)] = 72580, + [SMALL_STATE(1999)] = 72590, + [SMALL_STATE(2000)] = 72598, + [SMALL_STATE(2001)] = 72608, + [SMALL_STATE(2002)] = 72616, + [SMALL_STATE(2003)] = 72626, + [SMALL_STATE(2004)] = 72636, + [SMALL_STATE(2005)] = 72646, + [SMALL_STATE(2006)] = 72656, + [SMALL_STATE(2007)] = 72664, + [SMALL_STATE(2008)] = 72674, + [SMALL_STATE(2009)] = 72684, + [SMALL_STATE(2010)] = 72692, + [SMALL_STATE(2011)] = 72702, + [SMALL_STATE(2012)] = 72710, + [SMALL_STATE(2013)] = 72720, + [SMALL_STATE(2014)] = 72730, + [SMALL_STATE(2015)] = 72740, + [SMALL_STATE(2016)] = 72750, + [SMALL_STATE(2017)] = 72760, + [SMALL_STATE(2018)] = 72770, + [SMALL_STATE(2019)] = 72780, + [SMALL_STATE(2020)] = 72790, + [SMALL_STATE(2021)] = 72800, + [SMALL_STATE(2022)] = 72810, + [SMALL_STATE(2023)] = 72820, + [SMALL_STATE(2024)] = 72828, + [SMALL_STATE(2025)] = 72838, + [SMALL_STATE(2026)] = 72848, + [SMALL_STATE(2027)] = 72858, + [SMALL_STATE(2028)] = 72868, + [SMALL_STATE(2029)] = 72876, + [SMALL_STATE(2030)] = 72886, + [SMALL_STATE(2031)] = 72894, + [SMALL_STATE(2032)] = 72904, + [SMALL_STATE(2033)] = 72914, + [SMALL_STATE(2034)] = 72924, + [SMALL_STATE(2035)] = 72934, + [SMALL_STATE(2036)] = 72944, + [SMALL_STATE(2037)] = 72954, + [SMALL_STATE(2038)] = 72961, + [SMALL_STATE(2039)] = 72968, + [SMALL_STATE(2040)] = 72975, + [SMALL_STATE(2041)] = 72982, + [SMALL_STATE(2042)] = 72989, + [SMALL_STATE(2043)] = 72996, + [SMALL_STATE(2044)] = 73003, + [SMALL_STATE(2045)] = 73010, + [SMALL_STATE(2046)] = 73017, + [SMALL_STATE(2047)] = 73024, + [SMALL_STATE(2048)] = 73031, + [SMALL_STATE(2049)] = 73038, + [SMALL_STATE(2050)] = 73045, + [SMALL_STATE(2051)] = 73052, + [SMALL_STATE(2052)] = 73059, + [SMALL_STATE(2053)] = 73066, + [SMALL_STATE(2054)] = 73073, + [SMALL_STATE(2055)] = 73080, + [SMALL_STATE(2056)] = 73087, + [SMALL_STATE(2057)] = 73094, + [SMALL_STATE(2058)] = 73101, + [SMALL_STATE(2059)] = 73108, + [SMALL_STATE(2060)] = 73115, + [SMALL_STATE(2061)] = 73122, + [SMALL_STATE(2062)] = 73129, + [SMALL_STATE(2063)] = 73136, + [SMALL_STATE(2064)] = 73143, + [SMALL_STATE(2065)] = 73150, + [SMALL_STATE(2066)] = 73157, + [SMALL_STATE(2067)] = 73164, + [SMALL_STATE(2068)] = 73171, + [SMALL_STATE(2069)] = 73178, + [SMALL_STATE(2070)] = 73185, + [SMALL_STATE(2071)] = 73192, + [SMALL_STATE(2072)] = 73199, + [SMALL_STATE(2073)] = 73206, + [SMALL_STATE(2074)] = 73213, + [SMALL_STATE(2075)] = 73220, + [SMALL_STATE(2076)] = 73227, + [SMALL_STATE(2077)] = 73234, + [SMALL_STATE(2078)] = 73241, + [SMALL_STATE(2079)] = 73248, + [SMALL_STATE(2080)] = 73255, + [SMALL_STATE(2081)] = 73262, + [SMALL_STATE(2082)] = 73269, + [SMALL_STATE(2083)] = 73276, + [SMALL_STATE(2084)] = 73283, + [SMALL_STATE(2085)] = 73290, + [SMALL_STATE(2086)] = 73297, + [SMALL_STATE(2087)] = 73304, + [SMALL_STATE(2088)] = 73311, + [SMALL_STATE(2089)] = 73318, + [SMALL_STATE(2090)] = 73325, + [SMALL_STATE(2091)] = 73332, + [SMALL_STATE(2092)] = 73339, + [SMALL_STATE(2093)] = 73346, + [SMALL_STATE(2094)] = 73353, + [SMALL_STATE(2095)] = 73360, + [SMALL_STATE(2096)] = 73367, + [SMALL_STATE(2097)] = 73374, + [SMALL_STATE(2098)] = 73381, + [SMALL_STATE(2099)] = 73388, + [SMALL_STATE(2100)] = 73395, + [SMALL_STATE(2101)] = 73402, + [SMALL_STATE(2102)] = 73409, + [SMALL_STATE(2103)] = 73416, + [SMALL_STATE(2104)] = 73423, + [SMALL_STATE(2105)] = 73430, + [SMALL_STATE(2106)] = 73437, + [SMALL_STATE(2107)] = 73444, + [SMALL_STATE(2108)] = 73451, + [SMALL_STATE(2109)] = 73458, + [SMALL_STATE(2110)] = 73465, + [SMALL_STATE(2111)] = 73472, + [SMALL_STATE(2112)] = 73479, + [SMALL_STATE(2113)] = 73486, + [SMALL_STATE(2114)] = 73493, + [SMALL_STATE(2115)] = 73500, + [SMALL_STATE(2116)] = 73507, + [SMALL_STATE(2117)] = 73514, + [SMALL_STATE(2118)] = 73521, + [SMALL_STATE(2119)] = 73528, + [SMALL_STATE(2120)] = 73535, + [SMALL_STATE(2121)] = 73542, + [SMALL_STATE(2122)] = 73549, + [SMALL_STATE(2123)] = 73556, + [SMALL_STATE(2124)] = 73563, + [SMALL_STATE(2125)] = 73570, + [SMALL_STATE(2126)] = 73577, + [SMALL_STATE(2127)] = 73584, + [SMALL_STATE(2128)] = 73591, + [SMALL_STATE(2129)] = 73598, + [SMALL_STATE(2130)] = 73605, + [SMALL_STATE(2131)] = 73612, + [SMALL_STATE(2132)] = 73619, + [SMALL_STATE(2133)] = 73626, + [SMALL_STATE(2134)] = 73633, + [SMALL_STATE(2135)] = 73640, + [SMALL_STATE(2136)] = 73647, + [SMALL_STATE(2137)] = 73654, + [SMALL_STATE(2138)] = 73661, + [SMALL_STATE(2139)] = 73668, + [SMALL_STATE(2140)] = 73675, + [SMALL_STATE(2141)] = 73682, + [SMALL_STATE(2142)] = 73689, + [SMALL_STATE(2143)] = 73696, + [SMALL_STATE(2144)] = 73703, + [SMALL_STATE(2145)] = 73710, + [SMALL_STATE(2146)] = 73717, + [SMALL_STATE(2147)] = 73724, + [SMALL_STATE(2148)] = 73731, + [SMALL_STATE(2149)] = 73738, + [SMALL_STATE(2150)] = 73745, + [SMALL_STATE(2151)] = 73752, + [SMALL_STATE(2152)] = 73759, + [SMALL_STATE(2153)] = 73766, + [SMALL_STATE(2154)] = 73773, + [SMALL_STATE(2155)] = 73780, + [SMALL_STATE(2156)] = 73787, + [SMALL_STATE(2157)] = 73794, + [SMALL_STATE(2158)] = 73801, + [SMALL_STATE(2159)] = 73808, + [SMALL_STATE(2160)] = 73815, + [SMALL_STATE(2161)] = 73822, + [SMALL_STATE(2162)] = 73829, + [SMALL_STATE(2163)] = 73836, + [SMALL_STATE(2164)] = 73843, + [SMALL_STATE(2165)] = 73850, + [SMALL_STATE(2166)] = 73857, + [SMALL_STATE(2167)] = 73864, + [SMALL_STATE(2168)] = 73871, + [SMALL_STATE(2169)] = 73878, + [SMALL_STATE(2170)] = 73885, + [SMALL_STATE(2171)] = 73892, + [SMALL_STATE(2172)] = 73899, + [SMALL_STATE(2173)] = 73906, + [SMALL_STATE(2174)] = 73913, + [SMALL_STATE(2175)] = 73920, + [SMALL_STATE(2176)] = 73927, + [SMALL_STATE(2177)] = 73934, + [SMALL_STATE(2178)] = 73941, + [SMALL_STATE(2179)] = 73948, + [SMALL_STATE(2180)] = 73955, + [SMALL_STATE(2181)] = 73962, + [SMALL_STATE(2182)] = 73969, + [SMALL_STATE(2183)] = 73976, + [SMALL_STATE(2184)] = 73983, + [SMALL_STATE(2185)] = 73990, + [SMALL_STATE(2186)] = 73997, + [SMALL_STATE(2187)] = 74004, + [SMALL_STATE(2188)] = 74011, + [SMALL_STATE(2189)] = 74018, + [SMALL_STATE(2190)] = 74025, + [SMALL_STATE(2191)] = 74032, + [SMALL_STATE(2192)] = 74039, + [SMALL_STATE(2193)] = 74046, + [SMALL_STATE(2194)] = 74053, + [SMALL_STATE(2195)] = 74060, + [SMALL_STATE(2196)] = 74067, + [SMALL_STATE(2197)] = 74074, + [SMALL_STATE(2198)] = 74081, + [SMALL_STATE(2199)] = 74088, + [SMALL_STATE(2200)] = 74095, + [SMALL_STATE(2201)] = 74102, + [SMALL_STATE(2202)] = 74109, + [SMALL_STATE(2203)] = 74116, + [SMALL_STATE(2204)] = 74123, + [SMALL_STATE(2205)] = 74130, + [SMALL_STATE(2206)] = 74137, + [SMALL_STATE(2207)] = 74144, + [SMALL_STATE(2208)] = 74151, + [SMALL_STATE(2209)] = 74158, + [SMALL_STATE(2210)] = 74165, + [SMALL_STATE(2211)] = 74172, + [SMALL_STATE(2212)] = 74179, + [SMALL_STATE(2213)] = 74186, + [SMALL_STATE(2214)] = 74193, + [SMALL_STATE(2215)] = 74200, + [SMALL_STATE(2216)] = 74207, + [SMALL_STATE(2217)] = 74214, + [SMALL_STATE(2218)] = 74221, + [SMALL_STATE(2219)] = 74228, + [SMALL_STATE(2220)] = 74235, + [SMALL_STATE(2221)] = 74242, + [SMALL_STATE(2222)] = 74249, + [SMALL_STATE(2223)] = 74256, + [SMALL_STATE(2224)] = 74263, + [SMALL_STATE(2225)] = 74270, + [SMALL_STATE(2226)] = 74277, + [SMALL_STATE(2227)] = 74284, + [SMALL_STATE(2228)] = 74291, + [SMALL_STATE(2229)] = 74298, + [SMALL_STATE(2230)] = 74305, + [SMALL_STATE(2231)] = 74312, + [SMALL_STATE(2232)] = 74319, + [SMALL_STATE(2233)] = 74326, + [SMALL_STATE(2234)] = 74333, + [SMALL_STATE(2235)] = 74340, + [SMALL_STATE(2236)] = 74347, + [SMALL_STATE(2237)] = 74354, + [SMALL_STATE(2238)] = 74361, + [SMALL_STATE(2239)] = 74368, + [SMALL_STATE(2240)] = 74375, + [SMALL_STATE(2241)] = 74382, + [SMALL_STATE(2242)] = 74389, + [SMALL_STATE(2243)] = 74396, + [SMALL_STATE(2244)] = 74403, + [SMALL_STATE(2245)] = 74410, + [SMALL_STATE(2246)] = 74417, + [SMALL_STATE(2247)] = 74424, + [SMALL_STATE(2248)] = 74431, + [SMALL_STATE(2249)] = 74438, + [SMALL_STATE(2250)] = 74445, + [SMALL_STATE(2251)] = 74452, + [SMALL_STATE(2252)] = 74459, + [SMALL_STATE(2253)] = 74466, + [SMALL_STATE(2254)] = 74473, + [SMALL_STATE(2255)] = 74480, + [SMALL_STATE(2256)] = 74487, + [SMALL_STATE(2257)] = 74494, + [SMALL_STATE(2258)] = 74501, + [SMALL_STATE(2259)] = 74508, + [SMALL_STATE(2260)] = 74515, + [SMALL_STATE(2261)] = 74522, + [SMALL_STATE(2262)] = 74529, + [SMALL_STATE(2263)] = 74536, + [SMALL_STATE(2264)] = 74543, + [SMALL_STATE(2265)] = 74550, + [SMALL_STATE(2266)] = 74557, + [SMALL_STATE(2267)] = 74564, + [SMALL_STATE(2268)] = 74571, + [SMALL_STATE(2269)] = 74578, + [SMALL_STATE(2270)] = 74585, + [SMALL_STATE(2271)] = 74592, + [SMALL_STATE(2272)] = 74599, + [SMALL_STATE(2273)] = 74606, + [SMALL_STATE(2274)] = 74613, + [SMALL_STATE(2275)] = 74620, + [SMALL_STATE(2276)] = 74627, + [SMALL_STATE(2277)] = 74634, + [SMALL_STATE(2278)] = 74641, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -117171,2400 +143726,2643 @@ 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(418), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), - [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 42), - [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 42), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(894), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(613), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2016), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1923), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(572), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(615), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1780), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2019), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(894), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2016), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1923), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(412), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2019), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 49), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 49), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 57), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 57), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 63), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 63), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 65), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 65), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 77), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 77), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 49), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 49), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 82), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 82), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 86), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 86), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 92), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 92), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 77), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 77), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 101), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 101), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 112), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 112), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 62), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 62), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 41), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 41), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 42), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 42), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 95), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 95), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 96), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 96), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 98), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 98), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 43), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 43), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 68), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 68), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 69), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 69), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 72), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 72), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 73), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 73), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 42), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 42), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 74), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 74), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 40), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 40), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 38), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 38), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(804), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(386), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(625), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(625), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(627), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(251), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(552), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1719), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(25), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1724), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1721), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(572), - [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1847), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1726), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(379), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1978), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(483), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1851), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1854), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1833), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1697), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1910), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(549), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(611), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1864), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1892), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1843), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1466), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(693), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1679), - [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1540), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(693), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(689), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(796), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(107), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(33), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1720), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1746), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(613), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1798), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1722), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(380), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2016), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(464), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1791), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1814), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1923), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1750), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1902), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(792), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(23), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1689), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1693), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(609), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1809), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1702), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(331), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2000), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(480), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1984), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1918), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1996), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(799), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(178), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(39), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1745), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1754), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(615), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1780), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1747), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(376), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2019), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(471), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1801), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1807), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1951), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1758), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1848), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(788), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(230), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1742), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(532), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1878), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1736), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2022), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1725), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1909), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(718), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(552), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1774] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(997), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(340), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(840), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(392), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(616), - [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(616), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(617), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(620), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(618), - [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(619), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1864), - [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1892), - [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1843), - [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1466), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(693), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1679), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1540), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(693), - [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(689), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 42), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 42), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), - [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1210), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 58), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 58), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 106), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 42), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 85), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 59), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 59), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 130), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 130), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 126), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 126), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 121), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 121), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 89), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 89), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 107), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 107), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 47), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 47), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 38), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 38), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 70), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 70), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 47), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 47), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(753), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(720), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1778), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 55), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 55), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(756), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(720), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1778), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 56), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 56), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 54), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 54), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 81), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 81), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 56), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 56), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 81), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 81), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 54), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 54), - [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 38), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 38), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 39), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 39), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(997), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 60), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 60), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 79), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 79), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 38), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 38), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 39), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 39), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 52), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 52), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 55), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 55), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 80), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 80), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 42), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 42), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 43), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 43), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 80), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 80), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 73), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 73), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 42), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 42), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 74), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 74), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 98), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 98), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 44), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 44), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 44), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 44), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 71), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 71), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1985), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), - [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 97), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 97), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 52), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 52), - [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 52), SHIFT(1985), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1985), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 79), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 79), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 79), SHIFT(1985), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1985), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1588), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(946), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3061] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(997), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(998), - [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(996), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 78), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 78), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 46), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 64), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 116), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 117), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1133), - [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1134), - [3371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1132), - [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1147), - [3377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1143), - [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1146), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 44), - [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(736), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(736), - [3407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(736), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 38), SHIFT(1140), - [3413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 39), SHIFT(1141), - [3416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(736), - [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(736), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 38), SHIFT(736), - [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 39), SHIFT(736), - [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1135), - [3433] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(736), - [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1129), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1130), - [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1131), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1901), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 42), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 61), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 61), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 111), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 111), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 90), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 90), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 113), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 113), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 93), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 93), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 111), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 111), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 61), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 61), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 42), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), - [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), - [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), - [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 42), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 111), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 111), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 61), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 61), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 42), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 113), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 113), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 53), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 53), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 93), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 93), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 93), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 93), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 113), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 113), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 61), - [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 61), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 113), - [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 113), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 99), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 99), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 75), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 75), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 48), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 94), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 42), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 42), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 44), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 98), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 98), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 73), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 73), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 42), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 42), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 76), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 43), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 43), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 74), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 74), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 35), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 45), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 102), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 3, 0, 102), - [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 66), SHIFT_REPEAT(1361), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 66), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 66), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 66), SHIFT_REPEAT(1288), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 66), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 66), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 50), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 50), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 50), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 50), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 123), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 87), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 51), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 128), SHIFT_REPEAT(1385), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 128), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 118), SHIFT_REPEAT(1431), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 118), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 108), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 87), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [4456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 118), SHIFT_REPEAT(1419), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 118), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 108), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 119), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 132), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1588), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 122), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 122), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 87), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 119), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 129), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 124), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 100), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 131), SHIFT_REPEAT(1969), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 131), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 127), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 87), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 66), SHIFT_REPEAT(1156), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 66), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 132), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 124), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 114), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 51), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 98), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 74), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 43), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 74), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 43), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 73), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 74), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 98), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 43), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 43), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 74), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 73), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 43), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 98), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 42), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5217] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 74), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 73), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 98), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 73), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 73), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 98), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), + [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 42), + [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 42), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2166), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(528), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2196), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(517), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1504), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2077), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2255), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2249), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(528), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(528), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(590), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(ts_builtin_sym_non_reserved_keyword, 1, 0, 134), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(526), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(591), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(522), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(521), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1220), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(670), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2114), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1046), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(490), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1080), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(494), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1017), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(486), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 113), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 113), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 63), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 63), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 57), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 57), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 65), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 65), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 102), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 102), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 77), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 77), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 49), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 49), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 83), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 83), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 87), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 87), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 92), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 92), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 93), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 93), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 77), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 77), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 49), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 49), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 42), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 42), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 40), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 40), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 41), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 41), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 42), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 42), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 43), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 43), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 62), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 62), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 68), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 68), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 69), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 69), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 72), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 72), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 73), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 73), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 74), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 74), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 96), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 96), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 99), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 99), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1062), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(477), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(825), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(825), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(840), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(491), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(827), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(807), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(497), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(496), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(579), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(468), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(900), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1908), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1844), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(900), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(507), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 38), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 38), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1021), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(472), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(762), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(762), + [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(744), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(298), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(490), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1978), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(30), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(557), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(553), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(806), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2220), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(546), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(57), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(589), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(108), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(576), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(581), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(570), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(516), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(582), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(767), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(111), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(497), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(496), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(579), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(468), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(586), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1908), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1844), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(586), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(507), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1006), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(555), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(109), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(572), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(556), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(585), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1043), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(138), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(26), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(547), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(558), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(832), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2040), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(548), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(58), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(590), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(107), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(568), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(573), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(580), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(531), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(575), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1023), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(219), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(34), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(550), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(560), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(837), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2062), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(551), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(55), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(591), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(105), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(565), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(566), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(583), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(532), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(567), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1040), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(541), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(110), + [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(564), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(554), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(593), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1012), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(205), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(40), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(574), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(561), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(113), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(594), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(592), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(54), + [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(597), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(106), + [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(577), + [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(584), + [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(587), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(527), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(562), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1019), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(545), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(112), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(571), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(559), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(569), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1024), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2029), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(844), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2134), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1971), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(443), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2253), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(670), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2114), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(533), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1007), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(534), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(703), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(543), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(588), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1025), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2020), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2002), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2262), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2209] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(1223), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(384), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 42), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 42), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), + [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2115), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2032), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1077), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1172), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1142), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1490), + [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2104), + [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 42), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 86), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 58), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 107), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 58), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 121), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 121), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 122), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 122), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 126), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 126), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 127), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 127), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 131), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 131), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 89), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 89), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 59), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 59), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 90), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 90), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(528), + [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 47), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 47), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 38), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 38), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 70), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 70), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 108), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 108), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 47), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 47), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 55), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 55), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(976), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(975), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(563), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 82), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 82), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 56), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 56), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 54), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 54), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 55), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 55), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(966), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(975), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(563), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 38), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 38), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 56), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 56), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 39), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 39), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1223), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 54), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 54), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 80), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 80), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 52), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 52), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 38), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 38), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 82), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 82), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 60), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 60), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 39), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 39), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 81), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 81), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 81), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 81), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 44), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 44), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 73), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 73), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 44), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 44), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 42), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 42), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 42), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 42), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 43), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 43), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 74), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 74), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 71), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 71), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 98), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 98), + [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(552), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 52), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 52), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 52), SHIFT(552), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [3463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(552), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 80), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 80), + [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 80), SHIFT(552), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(552), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1891), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1181), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3541] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1223), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 79), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 79), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [3718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 116), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 117), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 118), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 106), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 85), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_argument_list_repeat1, 2, 0, 0), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 46), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 64), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1432), + [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1191), + [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1433), + [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1431), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1436), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1191), + [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1420), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1426), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 44), + [3961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), + [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [3990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 38), SHIFT(963), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [4003] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(963), + [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(963), + [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1421), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(963), + [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1423), + [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1429), + [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 39), SHIFT(963), + [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(963), + [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(963), + [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 38), SHIFT(1417), + [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 39), SHIFT(1427), + [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(963), + [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1430), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2218), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [4295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 42), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 61), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 61), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 91), + [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 91), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 112), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 112), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 114), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 114), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 94), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 94), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [4413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 61), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 61), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 91), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 91), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 112), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 112), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 112), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 112), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 61), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 61), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 42), + [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), + [4483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), + [4486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2065), + [4489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 42), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 42), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 91), + [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 91), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [4541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 114), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 114), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [4590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 94), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 94), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 53), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 53), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 114), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 114), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 91), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 91), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 94), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 94), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 61), + [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 61), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), + [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 75), + [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 75), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 100), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 100), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 94), + [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 94), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 114), + [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 114), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 45), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 74), + [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 74), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 42), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 42), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 44), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 76), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 95), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 73), + [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 73), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 35), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 48), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 42), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 42), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 43), + [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 43), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 50), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 50), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 50), + [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 50), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 103), + [4911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 3, 0, 103), + [4913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 66), SHIFT_REPEAT(1645), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 66), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 66), + [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 66), SHIFT_REPEAT(1577), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 66), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 66), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 129), SHIFT_REPEAT(1670), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 129), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 119), SHIFT_REPEAT(1708), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 119), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 109), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 120), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 88), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 51), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 109), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 88), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 119), SHIFT_REPEAT(1714), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 119), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 124), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [5062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 123), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 88), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 130), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 120), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 132), SHIFT_REPEAT(2088), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 132), + [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 123), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1891), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 88), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 133), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 133), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 125), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 128), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), + [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 66), SHIFT_REPEAT(1451), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 66), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 51), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [5364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 115), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_argument_list_repeat1, 2, 0, 78), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 125), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 42), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 74), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5469] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument_list, 2, 0, 0), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument_list, 3, 0, 0), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 43), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 43), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 43), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 99), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 99), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 74), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 74), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 73), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 43), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument_list, 3, 0, 78), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 74), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument_list, 4, 0, 78), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument_list, 4, 0, 0), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 74), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 73), + [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 99), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 99), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 99), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 73), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 43), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 73), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 73), }; #ifdef __cplusplus @@ -119607,6 +146405,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_c(void) { .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, .primary_state_ids = ts_primary_state_ids, + .name = "c", + .reserved_words = &ts_reserved_words[0][0], + .max_reserved_word_set_size = 42, }; return &language; } diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599..36ca2ee 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -9,8 +9,10 @@ extern "C" { #include #include -#define ts_builtin_sym_error ((TSSymbol)-1) -#define ts_builtin_sym_end 0 +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define ts_builtin_sym_non_reserved_keyword 1 + #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 #ifndef TREE_SITTER_API_H_ @@ -79,6 +81,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -115,7 +123,7 @@ struct TSLanguage { const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,6 +137,9 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; }; static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) {